transferTeam method Null safety

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

The group owner transfer the ownership of a group to a member The original group owner become a member. If the quit parameter is set to true, the original group owner leave the group after the transfer succeeds

Implementation

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