PermissionError constructor

PermissionError({
  1. required String operation,
  2. String message = 'Permission denied.',
  3. String errorId = 'permission_denied',
  4. String? suggestion,
})

Implementation

PermissionError({
  required this.operation,
  this.message = 'Permission denied.',
  this.errorId = 'permission_denied',
  this.suggestion,
});