ToolBarSpacer constructor

const ToolBarSpacer({
  1. Key? key,
  2. double spacerUnits = 1.0,
})

Builds a spacer utility widget for the toolbar. It generates blank space between the toolbar actions.

Implementation

const ToolBarSpacer({
  super.key,
  this.spacerUnits = 1.0,
});