HelpView constructor

HelpView({
  1. required KeyMap keyMap,
  2. bool showAll = false,
  3. int itemSpacing = 3,
  4. int runSpacing = 1,
  5. int columnGap = 4,
  6. int rowGap = 0,
  7. Style? keyStyle,
  8. Style? descriptionStyle,
  9. Key? key,
})

Implementation

HelpView({
  required this.keyMap,
  this.showAll = false,
  this.itemSpacing = 3,
  this.runSpacing = 1,
  this.columnGap = 4,
  this.rowGap = 0,
  this.keyStyle,
  this.descriptionStyle,
  super.key,
});