DescribeSchemasResponse.fromJson constructor

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

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(),
  );
}