encode<V> static method

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

Implementation

static V encode<V>(
  PaymentPagesCheckoutSessionShippingAddressCollection instance,
  Encoder<V> encoder,
) {
  final container = encoder.container<String>();
  container.encodeList(
    'allowed_countries',
    (container) => instance.allowedCountries.forEach((el) =>
        CheckoutSessionShippingAddressCollectionAllowedCountriesItem.encode(
          el,
          container.nestedSingleValueContainer().encoder,
        )),
  );
  return container.value;
}