LongInputParam constructor
LongInputParam({
- String? key,
- Int64? minValue,
- Int64? maxValue,
Implementation
factory LongInputParam({
$core.String? key,
$fixnum.Int64? minValue,
$fixnum.Int64? maxValue,
}) {
final _result = create();
if (key != null) {
_result.key = key;
}
if (minValue != null) {
_result.minValue = minValue;
}
if (maxValue != null) {
_result.maxValue = maxValue;
}
return _result;
}