confirmationMessage property

String get confirmationMessage

Implementation

String get confirmationMessage {
  switch (this) {
    case OverrideMode.open:
      return '✓ Unsandboxed fallback allowed – commands can run outside sandbox when necessary';
    case OverrideMode.closed:
      return '✓ Strict sandbox mode – all commands must run in sandbox or be excluded via the excludedCommands option';
  }
}