toJson method

Map<String, dynamic> toJson()

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;
  }
  if (encryptedSelf != null) {
    json[r'encryptedSelf'] = encryptedSelf;
  }
  return json;
}