transferTeam method

Future<NIMResult<List<NIMSuperTeamMember>>> transferTeam(
  1. String tid,
  2. String account,
  3. bool quit
)

拥有者将群的拥有者权限转给另外一个人,转移后,另外一个人成为拥有者 原拥有者变成普通成员。若参数quit为true,原拥有者直接退出该群

Implementation

Future<NIMResult<List<NIMSuperTeamMember>>> transferTeam(
    String tid, String account, bool quit) async {
  throw UnimplementedError('transferTeam() is not implemented');
}