ExtendLicenseConsumptionResponse.fromJson constructor

ExtendLicenseConsumptionResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ExtendLicenseConsumptionResponse.fromJson(Map<String, dynamic> json) {
  return ExtendLicenseConsumptionResponse(
    expiration: json['Expiration'] as String?,
    licenseConsumptionToken: json['LicenseConsumptionToken'] as String?,
  );
}