name property

String? name

Is passed into onConnect for content scripts that are listening for the connection event.

Implementation

String? get name => _wrapped.name;
void name=(String? v)

Implementation

set name(String? v) {
  _wrapped.name = v;
}