id property
String
get
id
Uniquely identifies this Token
.
Static IDs are "user"
and "system"
,
referring to the platform's user-specific and the system-wide hardware
token, respectively. Any other tokens (with other identifiers) might be
returned by enterprise.platformKeys.getTokens
.
Implementation
String get id => _wrapped.id;
set
id
(String v)
Implementation
set id(String v) {
_wrapped.id = v;
}