decode static method

CryptoProLicenseInfo decode(
  1. Object result
)

Implementation

static CryptoProLicenseInfo decode(Object result) {
  result as List<Object?>;
  return CryptoProLicenseInfo(
    serialNumber: result[0] as String?,
    expiredThroughDays: result[1] as int?,
    licenseInstallDate: result[2] as String?,
    existingLicenseStatus: result[3] as int?,
  );
}