SizeRange constructor

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

Restricts this Iterables item count to min (inclusive) and/or max (inclusive).

Implementation

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