toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'email_address'] = this.emailAddress;
if (this.notify != null) {
json[r'notify'] = this.notify;
} else {
json[r'notify'] = null;
}
return json;
}