StockholmMenuItem constructor

const StockholmMenuItem({
  1. required Widget child,
  2. VoidCallback? onSelected,
  3. double height = _menuItemHeight,
  4. Key? key,
})

Implementation

const StockholmMenuItem({
  required this.child,
  this.onSelected,
  this.height = _menuItemHeight,
  Key? key,
}) : super(key: key);