BatchDeletePartitionResponse.fromJson constructor
Implementation
factory BatchDeletePartitionResponse.fromJson(Map<String, dynamic> json) {
return BatchDeletePartitionResponse(
errors: (json['Errors'] as List?)
?.whereNotNull()
.map((e) => PartitionError.fromJson(e as Map<String, dynamic>))
.toList(),
);
}