encode<V> static method

V encode<V>(
  1. PaymentIntentPaymentMethodOptionsEps instance,
  2. Encoder<V> encoder
)

Implementation

static V encode<V>(
  PaymentIntentPaymentMethodOptionsEps instance,
  Encoder<V> encoder,
) {
  final container = encoder.container<String>();
  if (instance.setupFutureUsage != null) {
    container.encodeString(
      'setup_future_usage',
      'none',
    );
  }
  return container.value;
}