PopupButton constructor

const PopupButton({
  1. Key? key,
  2. required String label,
  3. required Color color,
  4. dynamic onPressed()?,
  5. double? fontSize = 14,
  6. double? width,
  7. double? height,
})

Implementation

const PopupButton({
  super.key,
  required this.label,
  required this.color,
  this.onPressed,
  this.fontSize = 14,
  this.width,
  this.height,
});