NumberSchema constructor

const NumberSchema({
  1. bool required = false,
  2. num? min,
  3. num? max,
})

Implementation

const NumberSchema({this.required = false, this.min, this.max});