toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
if (this.id != null) {
json[r'id'] = this.id;
} else {
json[r'id'] = null;
}
json[r'object'] = this.object;
json[r'email_address'] = this.emailAddress;
json[r'reserved'] = this.reserved;
if (this.verification != null) {
json[r'verification'] = this.verification;
} else {
json[r'verification'] = null;
}
json[r'linked_to'] = this.linkedTo;
if (this.matchesSsoConnection != null) {
json[r'matches_sso_connection'] = this.matchesSsoConnection;
} else {
json[r'matches_sso_connection'] = null;
}
json[r'created_at'] = this.createdAt;
json[r'updated_at'] = this.updatedAt;
return json;
}