path property

  1. @override
String path
override

Gets the full path with name of the current node.

Returns the fully qualified name of the current node.

Implementation

@override
String get path {
  try {
    return _getSkeleton(Field.path) ?? '';
  } on StorageException {
    throw Exception('Oops.... this should not happen... contact developer');
  }
}