LengthRange constructor

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

Restricts the length of this String to min (inclusive) and/or max (inclusive).

Implementation

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