StatusViewBar constructor

const StatusViewBar({
  1. Key? key,
  2. required List<Tool> items,
  3. double height = 24,
  4. double spacing = 0,
  5. ToolsAlignment alignment = ToolsAlignment.spaced,
})

Implementation

const StatusViewBar({
  super.key,
  required this.items,
  this.height = 24,
  this.spacing = 0,
  this.alignment = ToolsAlignment.spaced,
});