DeleteSchemaVersionsResponse.fromJson constructor

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

Implementation

factory DeleteSchemaVersionsResponse.fromJson(Map<String, dynamic> json) {
  return DeleteSchemaVersionsResponse(
    schemaVersionErrors: (json['SchemaVersionErrors'] as List?)
        ?.whereNotNull()
        .map(
            (e) => SchemaVersionErrorItem.fromJson(e as Map<String, dynamic>))
        .toList(),
  );
}