addOrgUser abstract method

Future<OrgUser> addOrgUser({
  1. required String orgId,
  2. required String userId,
  3. bool isAdmin = false,
})

Add a user to the org with the given org id. The user will be added as a member of the org.

Implementation

Future<OrgUser> addOrgUser({
  required String orgId,
  required String userId,
  bool isAdmin = false,
});