PaymentRequest extension type
The Payment Request
API's
PaymentRequest
interface is the primary access point into the API, and
lets web content and apps accept payments from the end user on behalf of the
operator of the site or the publisher of the app.
API documentation sourced from MDN Web Docs.
- on
- Implemented types
- Available extensions
Constructors
-
PaymentRequest(JSArray<
PaymentMethodData> methodData, PaymentDetailsInit details) -
factory
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- id → String
-
The
id
read-only attribute of the PaymentRequest interface returns a unique identifier for a particular PaymentRequest instance.no setter - onpaymentmethodchange ↔ EventHandler?
-
getter/setter pair
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
abort(
) → JSPromise< JSAny?> -
The
PaymentRequest.abort()
method of the PaymentRequest interface causes the user agent to end the payment request and to remove any user interface that might be shown. -
addEventListener(
String type, EventListener? callback, [JSAny options]) → void -
The
addEventListener()
method of the EventTarget interface sets up a function that will be called whenever the specified event is delivered to the target.inherited -
canMakePayment(
) → JSPromise< JSBoolean> -
The PaymentRequest method
canMakePayment()
determines whether or not the request is configured in a way that is compatible with at least one payment method supported by the . -
dispatchEvent(
Event event) → bool -
The
dispatchEvent()
method of the EventTarget sends an Event to the object, (synchronously) invoking the affected event listeners in the appropriate order. The normal event processing rules (including the capturing and optional bubbling phase) also apply to events dispatched manually withdispatchEvent()
.inherited -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
removeEventListener(
String type, EventListener? callback, [JSAny options]) → void -
The
removeEventListener()
method of the EventTarget interface removes an event listener previously registered with EventTarget.addEventListener from the target. The event listener to be removed is identified using a combination of the event type, the event listener function itself, and various optional options that may affect the matching process; see Matching event listeners for removal.inherited -
show(
[JSPromise< PaymentDetailsUpdate> detailsPromise]) → JSPromise<PaymentResponse> -
The PaymentRequest interface's
show()
method instructs the user agent to begin the process of showing and handling the user interface for the payment request to the user. -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited