id property

String get id

The id of the content script, specified in the API call. Must not start with a '_' as it's reserved as a prefix for generated script IDs.

Implementation

String get id => _wrapped.id;
set id (String v)

Implementation

set id(String v) {
  _wrapped.id = v;
}