OrgUserExistsError constructor

OrgUserExistsError({
  1. required String orgId,
  2. required String userId,
  3. bool log = kDebugMode,
})

Implementation

OrgUserExistsError({
  required String orgId,
  required String userId,
  bool log = kDebugMode,
}) : super(
        message: 'Organization with id "$orgId" '
            'already has a user with id "$userId"',
        stackTrace: StackTrace.current,
      );