ShortcutModel constructor

ShortcutModel(
  1. WidgetModel parent,
  2. String? id, {
  3. String? key,
  4. String? action,
})

Implementation

ShortcutModel(WidgetModel super.parent, super.id,
    {String? key, String? action}) {
  this.key = key;
  this.action = action;
}