transferGroupOwner method
Implementation
Future<V2TimCallback> transferGroupOwner({required String groupID, required String userID}) async {
V2TimCallback transferOwnerResult = await TencentImSDKPlugin.v2TIMManager.getGroupManager().transferGroupOwner(
groupID: groupID,
userID: userID,
);
return transferOwnerResult;
}