injectImmediately property

bool? get injectImmediately

Whether the injection should be triggered in the target as soon as possible. Note that this is not a guarantee that injection will occur prior to page load, as the page may have already loaded by the time the script reaches the target.

Implementation

bool? get injectImmediately => _wrapped.injectImmediately;
set injectImmediately (bool? v)

Implementation

set injectImmediately(bool? v) {
  _wrapped.injectImmediately = v;
}