ListSchemaVersionsResponse.fromJson constructor
Implementation
factory ListSchemaVersionsResponse.fromJson(Map<String, dynamic> json) {
return ListSchemaVersionsResponse(
nextToken: json['NextToken'] as String?,
schemas: (json['Schemas'] as List?)
?.whereNotNull()
.map((e) => SchemaVersionListItem.fromJson(e as Map<String, dynamic>))
.toList(),
);
}