applyJoinTeam method Null safety
Request to join a group. The user will wait for the request to be approved or join the group directly after sending the request. At the same time, the group information will be returned.
teamId
The group ID
postscript
The remark (maximum length: 5,000)
Implementation
Future<NIMResult<NIMSuperTeam>> applyJoinTeam(
String teamId, String postscript) async {
return _platform.applyJoinTeam(teamId, postscript);
}