PaneItemSeparator constructor

PaneItemSeparator({
  1. Key? key,
  2. Color? color,
  3. double? thickness,
})

Creates an item separator.

Implementation

PaneItemSeparator({
  super.key,
  this.color,
  this.thickness,
});