DeleteSchemaVersionsResponse.fromJson constructor
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(),
);
}