updateMemberNick method Null safety

Future<NIMResult<void>> updateMemberNick(
  1. String teamId,
  2. String account,
  3. String nick
)

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