toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
if (telecomType != null) {
json[r'telecomType'] = telecomType;
}
if (telecomNumber != null) {
json[r'telecomNumber'] = telecomNumber;
}
if (telecomDescription != null) {
json[r'telecomDescription'] = telecomDescription;
}
return json;
}