registerNewGroupAdministrator method
Future<RegistrationSuccess>
registerNewGroupAdministrator(
- RegistrationInformation registrationInformation, {
- GroupType? type,
- PermissionType? role,
Implementation
Future<RegistrationSuccess> registerNewGroupAdministrator(RegistrationInformation registrationInformation, { GroupType? type, PermissionType? role }) async {
return await CardinalSdkPlatformInterface.instance.apis.group.registerNewGroupAdministrator(
_sdkId,
type,
role,
registrationInformation,
);
}