RangeBand constructor

const RangeBand({
  1. Key? key,
  2. required TileSelection selection,
  3. required Color color,
  4. required Widget child,
})

Implementation

const RangeBand({
  super.key,
  required this.selection,
  required this.color,
  required this.child,
});