acceptGroupApplication method Null safety
Approve a group joining request
Implementation
//When using on the web side, the webMessageInstance field must be passed in. Message instance corresponding to [Group System Notification]
///
Future<V2TimCallback> acceptGroupApplication({
required String groupID,
String? reason,
required String fromUser,
required String toUser,
int? addTime,
GroupApplicationTypeEnum? type,
String? webMessageInstance,
}) async {
return ImFlutterPlatform.instance.acceptGroupApplication(
groupID: groupID,
reason: reason,
fromUser: fromUser,
toUser: toUser,
addTime: addTime,
type: type!.index,
webMessageInstance: webMessageInstance,
);
}