Input$CoinValueInput constructor

Input$CoinValueInput({
  1. String? amount,
  2. String? currency,
})

Implementation

factory Input$CoinValueInput({
  String? amount,
  String? currency,
}) =>
    Input$CoinValueInput._({
      if (amount != null) r'amount': amount,
      if (currency != null) r'currency': currency,
    });