toJson method
Implementation
Map<String, dynamic> toJson() {
final _json = <String, dynamic>{};
if (showEmailAddress != null) {
_json[r'ShowEmailAddress'] = showEmailAddress;
}
if (showFullName != null) {
_json[r'ShowFullName'] = showFullName;
}
return _json;
}