applyJoinTeam method Null safety

Future<NIMResult<NIMSuperTeam>> applyJoinTeam(
  1. String teamId,
  2. String postscript
)

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);
}