Size constructor

const Size({
  1. required int min,
  2. required int max,
  3. bool validOnNull = true,
})

Implementation

const Size({
  required this.min,
  required this.max,
  this.validOnNull = true,
}) : super(const [size]);