KeybindingWarning constructor

const KeybindingWarning({
  1. required KeybindingWarningType type,
  2. required ReservedSeverity severity,
  3. required String message,
  4. String? key,
  5. String? context,
  6. String? action,
  7. String? suggestion,
})

Implementation

const KeybindingWarning({
  required this.type,
  required this.severity,
  required this.message,
  this.key,
  this.context,
  this.action,
  this.suggestion,
});