BsDropdownMenu constructor

const BsDropdownMenu({
  1. Key? key,
  2. required List<Widget> children,
  3. bool? dark,
  4. BsVariant? variant,
  5. Color? color,
  6. double minWidth = 160.0,
  7. double maxWidth = 320.0,
  8. EdgeInsetsGeometry padding = const EdgeInsets.symmetric(vertical: 8.0),
})

Creates a BsDropdownMenu.

Implementation

const BsDropdownMenu({
  super.key,
  required this.children,
  this.dark,
  this.variant,
  this.color,
  this.minWidth = 160.0,
  this.maxWidth = 320.0,
  this.padding = const EdgeInsets.symmetric(vertical: 8.0),
});