SchemaListItem.fromJson constructor
SchemaListItem.fromJson(
- Map<String, dynamic> json
)
Implementation
factory SchemaListItem.fromJson(Map<String, dynamic> json) {
return SchemaListItem(
createdTime: json['CreatedTime'] as String?,
description: json['Description'] as String?,
registryName: json['RegistryName'] as String?,
schemaArn: json['SchemaArn'] as String?,
schemaName: json['SchemaName'] as String?,
schemaStatus: (json['SchemaStatus'] as String?)?.toSchemaStatus(),
updatedTime: json['UpdatedTime'] as String?,
);
}