PaymentSheetPresentOptions constructor

  1. @JsonSerializable(explicitToJson: true)
const PaymentSheetPresentOptions({
  1. int? timeout,
})

Implementation

@JsonSerializable(explicitToJson: true)
const factory PaymentSheetPresentOptions({
  /// The number of milliseconds (after presenting) before the Payment Sheet
  /// closes automatically.
  ///
  /// At which point presentPaymentSheet` will resolve with an error.
  int? timeout,
}) = _PaymentSheetPresentOptions;