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