FastToolbarDivider constructor

const FastToolbarDivider({
  1. Key? key,
  2. double height = 24,
  3. double width = 1,
  4. EdgeInsets padding = const EdgeInsets.symmetric(horizontal: 8),
})

Implementation

const FastToolbarDivider({
  super.key,
  this.height = 24,
  this.width = 1,
  this.padding = const EdgeInsets.symmetric(horizontal: 8),
});