clampScalar method

  1. @override
void clampScalar(
  1. double min,
  2. double max
)
override

Clamp entries in this in the range min-max.

Implementation

@override
void clampScalar(double min, double max) {
  super.clampScalar(min, max);
  notifyListeners();
}