updateMyTeamNick method Null safety

Future<NIMResult<void>> updateMyTeamNick(
  1. String teamId,
  2. String nick
)

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