CryptoProLicenseInfo.fromMap constructor

CryptoProLicenseInfo.fromMap(
  1. Map<String, dynamic> json
)

Implementation

CryptoProLicenseInfo.fromMap(Map<String, dynamic> json) {
  serialNumber = json["serialNumber"];
  expiredThroughDays = json["expiredThroughDays"];
  licenseInstallDate = json["licenseInstallDate"];
  existingLicenseStatus = json["existingLicenseStatus"];
}