Input$FreebieTransactionInput constructor

Input$FreebieTransactionInput({
  1. double? quantity,
  2. String? amount,
  3. DateTime? scheduledAt,
  4. 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,
    });