id property

String? get id

The ID of the extension or app that opened the connection, if any.

Implementation

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

Implementation

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