actorId property
Returns the ID of the local actor (e.g. 'client-123' or 'user@example.com').
Implementation
@override
String get actorId {
if (_innerClient != null) {
return _innerClient!.actorId;
}
return 'offline-user';
}
Returns the ID of the local actor (e.g. 'client-123' or 'user@example.com').
@override
String get actorId {
if (_innerClient != null) {
return _innerClient!.actorId;
}
return 'offline-user';
}