Range constructor

const Range({
  1. required int firstSlot,
  2. required int lastSlot,
})

Implementation

const Range({
  required this.firstSlot,
  required this.lastSlot,
});