DeliveryTimeQuery constructor

DeliveryTimeQuery({
  1. AccountId? accountId,
  2. DeliveryId? ignore,
})

Implementation

factory DeliveryTimeQuery({
  $1.AccountId? accountId,
  $1.DeliveryId? ignore,
}) {
  final result = create();
  if (accountId != null) result.accountId = accountId;
  if (ignore != null) result.ignore = ignore;
  return result;
}