name property

  1. @override
String name
override

Gets the name of the current node.

Returns the name of the current node without the path prefix.

Implementation

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