EncryptedTelecom.fromJSON constructor

EncryptedTelecom.fromJSON(
  1. Map<String, dynamic> data
)

Implementation

factory EncryptedTelecom.fromJSON(Map<String, dynamic> data) {
	return EncryptedTelecom(
		telecomType: data["telecomType"] == null ? null : TelecomType.fromJSON(data["telecomType"]),
		telecomNumber: (data["telecomNumber"] as String?),
		telecomDescription: (data["telecomDescription"] as String?),
		encryptedSelf: (data["encryptedSelf"] as Base64String?)
	);
}