CreateLicenseResponse.fromJson constructor

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

Implementation

factory CreateLicenseResponse.fromJson(Map<String, dynamic> json) {
  return CreateLicenseResponse(
    licenseArn: json['LicenseArn'] as String?,
    status: (json['Status'] as String?)?.toLicenseStatus(),
    version: json['Version'] as String?,
  );
}