AgeRange constructor

AgeRange({
  1. int? high,
  2. int? low,
})

Implementation

AgeRange({
  this.high,
  this.low,
});