OrgDoesNotExistError constructor

OrgDoesNotExistError({
  1. required String orgId,
  2. bool log = kDebugMode,
})

Implementation

OrgDoesNotExistError({
  required String orgId,
  bool log = kDebugMode,
}) : super(
        message: 'Organization with id "$orgId" does not exist',
        stackTrace: StackTrace.current,
      );