NumberSchema constructor

const NumberSchema({
  1. bool integer = false,
  2. String? title,
  3. String? description,
  4. num? minimum,
  5. num? maximum,
  6. num? defaultValue,
})

Implementation

const NumberSchema({
  this.integer = false,
  this.title,
  this.description,
  this.minimum,
  this.maximum,
  this.defaultValue,
});