KeyHint constructor

KeyHint({
  1. required String keyLabel,
  2. required String description,
  3. Color? keyBackground,
  4. Color? keyForeground,
  5. Color? descriptionForeground,
  6. Style? keyStyle,
  7. Style? descriptionStyle,
  8. int gap = 1,
  9. Key? key,
})

Implementation

KeyHint({
  required this.keyLabel,
  required this.description,
  this.keyBackground,
  this.keyForeground,
  this.descriptionForeground,
  this.keyStyle,
  this.descriptionStyle,
  this.gap = 1,
  super.key,
});