RequestedConfiguration constructor

  1. @JsonSerializable(includeIfNull: false)
const RequestedConfiguration({
  1. PaymentMethods? payment_methods,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory RequestedConfiguration({
  // Note: d.ts has List<PaymentMethods>, but JSON structure is likely
  // the PaymentMethods object itself. Adjust if API response differs.
  PaymentMethods? payment_methods,
}) = _RequestedConfiguration;