ThemedButton constructor

const ThemedButton({
  1. Key? key,
  2. required dynamic onPressed()?,
  3. required String iconPath,
  4. double? size,
})

Implementation

const ThemedButton({
  super.key,
  required this.onPressed,
  required this.iconPath,
  this.size,
});