DelRange constructor

DelRange({
  1. int? low,
  2. int? hi,
  3. bool? all,
})

Implementation

DelRange({
  this.low,
  this.hi,
  this.all,
});