path property

String path

Returns the path of this entry: directory + '/' + name.

Implementation

String get path => _path ??= isRootEntry ? name : '$directory/$name';