IntentMode.paymentMode constructor
- @JsonSerializable(explicitToJson: true, includeIfNull: false)
const
IntentMode.paymentMode(
{ - required String currencyCode,
- required int amount,
- IntentFutureUsage? setupFutureUsage,
- CaptureMethod? captureMethod,
})
Implementation
@JsonSerializable(explicitToJson: true, includeIfNull: false)
const factory IntentMode.paymentMode({
required String currencyCode,
required int amount,
/// Data related to the future payment intent
IntentFutureUsage? setupFutureUsage,
/// Capture method for the future payment intent
CaptureMethod? captureMethod,
}) = _PaymentMode;