DeviceKeyboardStyle constructor

const DeviceKeyboardStyle({
  1. required Color backgroundColor,
  2. required Color button1BackgroundColor,
  3. required Color button1ForegroundColor,
  4. required Color button2BackgroundColor,
  5. required Color button2ForegroundColor,
})

Implementation

const DeviceKeyboardStyle({
  required this.backgroundColor,
  required this.button1BackgroundColor,
  required this.button1ForegroundColor,
  required this.button2BackgroundColor,
  required this.button2ForegroundColor,
});