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