toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
    json[r'id'] = this.id;
    json[r'inboxId'] = this.inboxId;
    json[r'emailAddress'] = this.emailAddress;
  return json;
}