toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final accountId = this.accountId;
  final hashedAccountId = this.hashedAccountId;
  final name = this.name;
  return {
    'accountId': ?accountId,
    'hashedAccountId': ?hashedAccountId,
    'name': ?name,
  };
}