NiceShortcutScope constructor

const NiceShortcutScope({
  1. Key? key,
  2. required Widget child,
  3. Map<ShortcutActivator, Intent>? shortcuts,
  4. Map<Type, Action<Intent>>? actions,
  5. bool autofocus = false,
})

Implementation

const NiceShortcutScope({
  super.key,
  required this.child,
  this.shortcuts,
  this.actions,
  this.autofocus = false,
});