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