DoubleInputParam constructor

DoubleInputParam({
  1. String? key,
  2. String? minValue,
  3. String? maxValue,
})

Implementation

factory DoubleInputParam({
  $core.String? key,
  $core.String? minValue,
  $core.String? maxValue,
}) {
  final _result = create();
  if (key != null) {
    _result.key = key;
  }
  if (minValue != null) {
    _result.minValue = minValue;
  }
  if (maxValue != null) {
    _result.maxValue = maxValue;
  }
  return _result;
}