GetCryptoCurrencyPaymentMethodsReply constructor

GetCryptoCurrencyPaymentMethodsReply({
  1. Iterable<PaymentMethod>? paymentMethods,
})

Implementation

factory GetCryptoCurrencyPaymentMethodsReply({
  $core.Iterable<$1.PaymentMethod>? paymentMethods,
}) {
  final $result = create();
  if (paymentMethods != null) {
    $result.paymentMethods.addAll(paymentMethods);
  }
  return $result;
}