KeyboardTheme constructor

const KeyboardTheme({
  1. required EdgeInsets keyPadding,
  2. required Color backgroundColor,
  3. required double borderWidth,
  4. required Color borderColor,
  5. required Color? textColor,
  6. required TextStyle? textStyle,
})

Implementation

const KeyboardTheme({
  required this.keyPadding,
  required this.backgroundColor,
  required this.borderWidth,
  required this.borderColor,
  required this.textColor,
  required this.textStyle,
});