StockholmMenu constructor

const StockholmMenu({
  1. required List<StockholmMenuEntity> items,
  2. double? width,
  3. Key? key,
})

Implementation

const StockholmMenu({
  required this.items,
  this.width,
  Key? key,
}) : super(key: key);