asyncPopups property

bool? asyncPopups

Implementation

bool? get asyncPopups => _jsObject.asyncPopups;
void asyncPopups=(bool? value)

Sets whether popups are opened asynchronously.

When set to false, blank popups are opened before anything else happens. When set to true, popups are opened when making the network request. Can be set to true for scenarios where about:blank is not supported, e.g. desktop apps or progressive web apps.

Defaults to false.

Implementation

set asyncPopups(bool? value) => _jsObject.asyncPopups = value;