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