AccountUserId constructor

AccountUserId({
  1. UUID? id,
  2. AccountId? accountId,
})

Implementation

factory AccountUserId({
  $0.UUID? id,
  AccountId? accountId,
}) {
  final result = create();
  if (id != null) result.id = id;
  if (accountId != null) result.accountId = accountId;
  return result;
}