BlurButton constructor

const BlurButton({
  1. required String caption,
  2. required VoidCallback onClick,
  3. double fontSize = 14,
  4. bool isEnabled = true,
  5. Key? key,
})

Implementation

const BlurButton({
  required this.caption,
  required this.onClick,
  this.fontSize = 14,
  this.isEnabled = true,
  super.key,
});