DataQualityRule_StatisticRangeExpectation constructor

DataQualityRule_StatisticRangeExpectation({
  1. DataQualityRule_StatisticRangeExpectation_ColumnStatistic? statistic,
  2. String? minValue,
  3. String? maxValue,
  4. bool? strictMinEnabled,
  5. bool? strictMaxEnabled,
})

Implementation

factory DataQualityRule_StatisticRangeExpectation({
  DataQualityRule_StatisticRangeExpectation_ColumnStatistic? statistic,
  $core.String? minValue,
  $core.String? maxValue,
  $core.bool? strictMinEnabled,
  $core.bool? strictMaxEnabled,
}) {
  final $result = create();
  if (statistic != null) {
    $result.statistic = statistic;
  }
  if (minValue != null) {
    $result.minValue = minValue;
  }
  if (maxValue != null) {
    $result.maxValue = maxValue;
  }
  if (strictMinEnabled != null) {
    $result.strictMinEnabled = strictMinEnabled;
  }
  if (strictMaxEnabled != null) {
    $result.strictMaxEnabled = strictMaxEnabled;
  }
  return $result;
}