RequestedConfiguration constructor
- @JsonSerializable(includeIfNull: false)
- 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;