PopupMenuDivider constructor

const PopupMenuDivider({
  1. Key? key,
  2. double height = _kMenuDividerHeight,
  3. double? thickness,
  4. double? indent,
  5. double? endIndent,
  6. BorderRadiusGeometry? radius,
  7. Color? color,
})

Creates a horizontal divider for a popup menu.

By default, the divider has a height of 16 logical pixels.

Implementation

const PopupMenuDivider({
  super.key,
  this.height = _kMenuDividerHeight,
  this.thickness,
  this.indent,
  this.endIndent,
  this.radius,
  this.color,
});