DeliveryTimeQuery constructor
DeliveryTimeQuery({
- AccountId? accountId,
- 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;
}