toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final accountId = this.accountId;
  final emailAddress = this.emailAddress;
  return {
    'AccountId': accountId,
    'EmailAddress': emailAddress,
  };
}