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