ownerPath property

String get ownerPath
inherited

The full owner path within the monitoring system (scopeId:registrationKey).

Implementation

String get ownerPath {
  final s = _scope;
  final r = _registrationKey;
  if (s == null || r == null) return r ?? '?';
  return _cachedOwnerPath ??= '${s.id}:$r';
}