Length constructor

const Length({
  1. int? min,
  2. int? max,
})

Implementation

const Length({
  this.min,
  this.max
});