GiantToadNumberInput constructor
const
GiantToadNumberInput({})
Implementation
const GiantToadNumberInput({
required this.value,
required this.onChanged,
this.min = double.negativeInfinity,
this.max = double.infinity,
this.step = 1,
this.fractionDigits = 0,
this.semanticLabel = 'Value',
super.key,
}) : assert(min <= max),
assert(step > 0),
assert(fractionDigits >= 0);