DescribeRegistryResponse.fromJson constructor

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

Implementation

factory DescribeRegistryResponse.fromJson(Map<String, dynamic> json) {
  return DescribeRegistryResponse(
    description: json['Description'] as String?,
    registryArn: json['RegistryArn'] as String?,
    registryName: json['RegistryName'] as String?,
    tags: (json['tags'] as Map<String, dynamic>?)
        ?.map((k, e) => MapEntry(k, e as String)),
  );
}