RoomCell constructor

RoomCell(
  1. StationData element, {
  2. Key? key,
  3. required Function scanButtonOnClick,
  4. required Function moreButtonOnClick,
  5. required Function cellDidClick,
})

Implementation

RoomCell(this.element,
    {super.key,
    required this.scanButtonOnClick,
    required this.moreButtonOnClick,
    required this.cellDidClick});