NextAction.multibanco constructor

  1. @JsonSerializable(explicitToJson: true)
  2. @FreezedUnionValue('multibanco')
const NextAction.multibanco({
  1. String? voucherURL,
})

Contains details necessary for the customer to complete the payment.

Implementation

@JsonSerializable(explicitToJson: true)
@FreezedUnionValue('multibanco')
const factory NextAction.multibanco({
  /// The URL for the hosted multibanco voucher page, which allows customers to view and print an multibanco voucher.
  String? voucherURL,
}) = _NextActionMultiBanco;