DigitOutLineButton constructor

const DigitOutLineButton({
  1. Key? key,
  2. required String label,
  3. VoidCallback? onPressed,
  4. ButtonStyle? buttonStyle,
})

Implementation

const DigitOutLineButton({
  super.key,
  required this.label,
  this.onPressed,
  this.buttonStyle,
});