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