GetLicenseResponse.fromJson constructor
Implementation
factory GetLicenseResponse.fromJson(Map<String, dynamic> json) {
return GetLicenseResponse(
license: json['License'] != null
? License.fromJson(json['License'] as Map<String, dynamic>)
: null,
);
}