id property

String get id

The transient ID that uniquely identifies the storage device. This ID will be persistent within the same run of a single application. It will not be a persistent identifier between different runs of an application, or between different applications.

Implementation

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

Implementation

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