DeviceOverviewAppBar constructor

const DeviceOverviewAppBar({
  1. Key? key,
  2. required TabController tabController,
  3. required int deviceId,
  4. required List<DeviceOverviewTab> tabs,
  5. double? toolbarHeight,
  6. bool isEditMode = false,
  7. List<Widget>? actions,
})

Implementation

const DeviceOverviewAppBar({
  super.key,
  required this.tabController,
  required this.deviceId,
  required this.tabs,
  this.toolbarHeight,
  this.isEditMode = false,
  this.actions,
});