quitGroup method Null safety

Future<V2TimCallback> quitGroup(
  1. {required String groupID}
)

Leave a group

Note:

In the public group (Public), meeting (Meeting) and live group (AVChatRoom), the group owner cannot leave the group, and the group owner can only call dismissGroup to dismiss the group. 

Implementation

Future<V2TimCallback> quitGroup({
  required String groupID,
}) async {
  return ImFlutterPlatform.instance.quitGroup(groupID: groupID);
}