HelpModel constructor

HelpModel({
  1. int width = 0,
  2. bool showAll = false,
  3. HelpStyles? styles,
})

Creates a new help model.

Implementation

HelpModel({this.width = 0, this.showAll = false, HelpStyles? styles})
  : styles = styles ?? HelpStyles();