SearchAgentQuery constructor
SearchAgentQuery({
- ContinuationToken? continuation,
- AccountId? accountId,
- Timestamp? updatedBefore,
Implementation
factory SearchAgentQuery({
$2.ContinuationToken? continuation,
$0.AccountId? accountId,
$4.Timestamp? updatedBefore,
}) {
final result = create();
if (continuation != null) result.continuation = continuation;
if (accountId != null) result.accountId = accountId;
if (updatedBefore != null) result.updatedBefore = updatedBefore;
return result;
}