updateMemberNick method Null safety
Modify a member's group nickname.
Only the group owner and group admins have permission to perform the operation.
teamId
The group ID
account
The IM account (accid) of the user whose nickname needs to be modified
nick
The new nickname
Implementation
Future<NIMResult<void>> updateMemberNick(
String teamId, String account, String nick) async {
return _platform.updateMemberNick(teamId, account, nick);
}