destroyGroup method Null safety
- String groupId
解散群组
Implementation
Future<void> destroyGroup(String groupId) async {
Map req = {'groupId': groupId};
Map result = await _channel.invokeMethod(EMSDKMethod.destroyGroup, req);
EMError.hasErrorFromResult(result);
}