toJson method

Map<String, dynamic> toJson()

Implementation

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