MenuLabel constructor

const MenuLabel({
  1. Key? key,
  2. double emptyLeadingSpace = 16,
  3. required Widget child,
  4. Widget? trailing,
  5. Widget? leading,
})

Implementation

const MenuLabel({
  super.key,
  this.emptyLeadingSpace = 16,
  required this.child,
  this.trailing,
  this.leading,
});