ToolBarDivider constructor

const ToolBarDivider({
  1. Key? key,
  2. EdgeInsets? padding = const EdgeInsets.all(6.0),
})

Builds a macOS-styled divider for the toolbar. It generates a vertical line (or a horizontal line, if it appears in the overflowed menu) between the toolbar actions.

Implementation

const ToolBarDivider({
  super.key,
  this.padding = const EdgeInsets.all(6.0),
});