NiceToolbar constructor

const NiceToolbar({
  1. Key? key,
  2. required List<NiceToolbarItem> items,
  3. void onItemTap(
    1. NiceToolbarItem item
    )?,
  4. double height = 44,
  5. bool dense = false,
})

Implementation

const NiceToolbar({
  super.key,
  required this.items,
  this.onItemTap,
  this.height = 44,
  this.dense = false,
});