ColumnStatisticsError.fromJson constructor

ColumnStatisticsError.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ColumnStatisticsError.fromJson(Map<String, dynamic> json) {
  return ColumnStatisticsError(
    columnStatistics: json['ColumnStatistics'] != null
        ? ColumnStatistics.fromJson(
            json['ColumnStatistics'] as Map<String, dynamic>)
        : null,
    error: json['Error'] != null
        ? ErrorDetail.fromJson(json['Error'] as Map<String, dynamic>)
        : null,
  );
}