FloatRange constructor

FloatRange({
  1. required double min,
  2. required double max,
})

Implementation

FloatRange({
  required this.min,
  required this.max,
});