SearchAgentQuery constructor

SearchAgentQuery({
  1. ContinuationToken? continuation,
  2. AccountId? accountId,
  3. 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;
}