SpecialKey constructor

const SpecialKey({
  1. Key? key,
  2. required String text,
  3. required Color backgroundColor,
  4. required Function onPressed,
})

Implementation

const SpecialKey({
  super.key,
  required this.text,
  required this.backgroundColor,
  required this.onPressed,
});