fromJSON static method

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

Implementation

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