CommandBarSeparator constructor

const CommandBarSeparator({
  1. Key? key,
  2. Color? color,
  3. double? thickness,
  4. Axis direction = Axis.vertical,
})

Creates a command bar item separator.

Implementation

const CommandBarSeparator({
  super.key,
  this.color,
  this.thickness,
  this.direction = Axis.vertical,
});