Input$DeductAmountFromUserInput constructor

Input$DeductAmountFromUserInput({
  1. String? amount,
  2. String? location,
  3. String? game,
  4. String? userId,
  5. String? card,
  6. Enum$TransactionTypeEnum? reason,
  7. required Input$TargetACIInput target,
})

Implementation

factory Input$DeductAmountFromUserInput({
  String? amount,
  String? location,
  String? game,
  String? userId,
  String? card,
  Enum$TransactionTypeEnum? reason,
  required Input$TargetACIInput target,
}) =>
    Input$DeductAmountFromUserInput._({
      if (amount != null) r'amount': amount,
      if (location != null) r'location': location,
      if (game != null) r'game': game,
      if (userId != null) r'userId': userId,
      if (card != null) r'card': card,
      if (reason != null) r'reason': reason,
      r'target': target,
    });