GetLicenseResponse.fromJson constructor

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

Implementation

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