QAccount.merge constructor

QAccount.merge(
  1. QAccount account, [
  2. Map<String, Object?>? properties
])

Implementation

factory QAccount.merge(
  Q.QAccount account, [
  Map<String, Object?>? properties,
]) {
  return QAccount(
    id: account.id,
    name: account.name,
    avatarUrl: account.avatarUrl,
    extras: account.extras,
    lastEventId: account.lastEventId,
    lastMessageId: account.lastMessageId,
    properties: properties,
  );
}