FleetListStatusHeader constructor

const FleetListStatusHeader({
  1. Key? key,
  2. required DeviceStatus status,
  3. int count = 0,
  4. bool isPinned = false,
  5. bool isExpanded = false,
  6. ValueChanged<bool>? onIsExpandedChanged,
})

Implementation

const FleetListStatusHeader({
  super.key,
  required this.status,
  this.count = 0,
  this.isPinned = false,
  this.isExpanded = false,
  this.onIsExpandedChanged,
});