WeebiNumPadButton constructor

const WeebiNumPadButton({
  1. required void onPressed(),
  2. required String string,
  3. required String tooltip,
  4. MaterialStateProperty<Color>? backColor,
  5. Color fontColor = Colors.black,
  6. Key? key,
})

Implementation

const WeebiNumPadButton(
    {required this.onPressed,
    required this.string,
    required this.tooltip,
    this.backColor,
    this.fontColor = Colors.black,
    Key? key})
    : super(key: key);