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