OnScreenKeys constructor
OnScreenKeys({})
Implementation
OnScreenKeys({
super.key,
this.textColor = Colors.white,
this.keyColor = Colors.black,
this.keyAxisCount = 4,
this.buttonRatio = 2,
required this.customButton,
this.customButtonText = 'Clear',
required this.textEditingController, // Added required keyword for the textEditingController parameter
required this.keyboardSize, // Added required keyword for the keyboardSize parameter
});