openWindow method - PaymentRequestEvent class - dart:html library (original) (raw)

description

Future<WindowClient> openWindow(

  1. String url )

Implementation

Future<WindowClient> openWindow(String url) => promiseToFuture<WindowClient>(
  JS("creates:WindowClient;", "#.openWindow(#)", this, url),
);