SandboxError constructor

SandboxError({
  1. required String command,
  2. required String reason,
  3. String message = 'Blocked by sandbox.',
  4. String errorId = 'sandbox_violation',
  5. String? suggestion,
})

Implementation

SandboxError({
  required this.command,
  required this.reason,
  this.message = 'Blocked by sandbox.',
  this.errorId = 'sandbox_violation',
  this.suggestion,
});