injectedScript property
String?
get
injectedScript
If specified, the script will be injected into every frame of the inspected page immediately upon load, before any of the frame's scripts. The script will not be injected after subsequent reloads-for example, if the user presses Ctrl+R.
Implementation
String? get injectedScript => _wrapped.injectedScript;
set
injectedScript
(String? v)
Implementation
set injectedScript(String? v) {
_wrapped.injectedScript = v;
}