toJson method

Map<String, dynamic> toJson()

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;
}