GetLicenseUsageResponse.fromJson constructor

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

Implementation

factory GetLicenseUsageResponse.fromJson(Map<String, dynamic> json) {
  return GetLicenseUsageResponse(
    licenseUsage: json['LicenseUsage'] != null
        ? LicenseUsage.fromJson(json['LicenseUsage'] as Map<String, dynamic>)
        : null,
  );
}