Input$FreebieTransactionInput constructor
Input$FreebieTransactionInput({
- double? quantity,
- String? amount,
- DateTime? scheduledAt,
- Input$TargetACIInput? target,
Implementation
factory Input$FreebieTransactionInput({
double? quantity,
String? amount,
DateTime? scheduledAt,
Input$TargetACIInput? target,
}) =>
Input$FreebieTransactionInput._({
if (quantity != null) r'quantity': quantity,
if (amount != null) r'amount': amount,
if (scheduledAt != null) r'scheduledAt': scheduledAt,
if (target != null) r'target': target,
});