actorId property

  1. @override
String get actorId
override

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';
}