DataQualityRule_RangeExpectation constructor

DataQualityRule_RangeExpectation({
  1. String? minValue,
  2. String? maxValue,
  3. bool? strictMinEnabled,
  4. bool? strictMaxEnabled,
})

Implementation

factory DataQualityRule_RangeExpectation({
  $core.String? minValue,
  $core.String? maxValue,
  $core.bool? strictMinEnabled,
  $core.bool? strictMaxEnabled,
}) {
  final $result = create();
  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;
}