transferGroupOwnership static method
Future<String?>
transferGroupOwnership({
- required String guid,
- required String uid,
- required dynamic onSuccess(
- String result
- required dynamic onError(
- CometChatException excep
Transfer the ownership of any group if logged-in user is the owner of the group
guid
The GUID of the group for which the ownership needs to be changed
uid
The UID of the member who should be the new owner
method could throw PlatformException with error codes specifying the cause
Implementation
static Future<String?> transferGroupOwnership(
{required String guid,
required String uid,
required Function(String result)? onSuccess,
required Function(CometChatException excep)? onError}) async {
try {
final result = await channel.invokeMethod('transferGroupOwnership', {
'guid': guid,
'uid': uid,
});
if (onSuccess != null) onSuccess(result);
return result;
} on PlatformException catch (p) {
_errorCallbackHandler(null, p, null, onError);
} catch (e) {
_errorCallbackHandler(null, null, e, onError);
}
return null;
}