applyJoinTeam static method

Future<NIMResult<NIMTeam>> applyJoinTeam(
  1. String teamId,
  2. NIMTeamType teamType, {
  3. String? postscript,
})

申请加入群

Implementation

static Future<NIMResult<NIMTeam>> applyJoinTeam(
    String teamId, NIMTeamType teamType,
    {String? postscript}) async {
  return NimCore.instance.teamService
      .applyJoinTeam(teamId, teamType, postscript);
}