requiresUserAction property

bool get requiresUserAction

Returns true if error requires user action

Implementation

bool get requiresUserAction {
  return switch (this) {
    UnauthorizedError() => true,
    ForbiddenError() => true,
    NotFoundError() => true,
    _ => false,
  };
}