KeyboardDisplay constructor

const KeyboardDisplay({
  1. Key? key,
  2. required List<LogicalKeyboardKey> keys,
  3. double? spacing,
})

Implementation

const KeyboardDisplay({
  super.key,
  required List<LogicalKeyboardKey> keys,
  this.spacing,
})  : _keys = keys,
      _activator = null;