runAt property

RunAt? get runAt

Specifies when JavaScript files are injected into the web page. The preferred and default value is document_idle.

Implementation

RunAt? get runAt => _wrapped.runAt?.let(RunAt.fromJS);
set runAt (RunAt? v)

Implementation

set runAt(RunAt? v) {
  _wrapped.runAt = v?.toJS;
}