MinNumberValidator constructor

const MinNumberValidator({
  1. required double number,
})

Constructs the validator with the minimum number that the value must be.

Implementation

const MinNumberValidator({
  required this.number,
});