FleetList constructor

const FleetList({
  1. Key? key,
  2. required List<Device> devices,
  3. RefreshCallback onRefresh = Future.value,
  4. CurrentDateTimeUseCase? currentDate,
})

Implementation

const FleetList({
  super.key,
  required this.devices,
  this.onRefresh = Future.value,
  this.currentDate,
});