updateMyTeamNick method Null safety
Modify the nickname of the current user displayed in the group.
teamId
The group ID
nick
The new nickname
Implementation
Future<NIMResult<void>> updateMyTeamNick(String teamId, String nick) async {
return _platform.updateMyTeamNick(teamId, nick);
}