runAt property
RunAt?
get
runAt
The soonest that the JavaScript or CSS will be injected into the tab. Defaults to "document_idle".
Implementation
RunAt? get runAt => _wrapped.runAt?.let(RunAt.fromJS);
set
runAt
(RunAt? v)
Implementation
set runAt(RunAt? v) {
_wrapped.runAt = v?.toJS;
}