GetRegistryResponse.fromJson constructor
Implementation
factory GetRegistryResponse.fromJson(Map<String, dynamic> json) {
return GetRegistryResponse(
createdTime: json['CreatedTime'] as String?,
description: json['Description'] as String?,
registryArn: json['RegistryArn'] as String?,
registryName: json['RegistryName'] as String?,
status: (json['Status'] as String?)?.toRegistryStatus(),
updatedTime: json['UpdatedTime'] as String?,
);
}