name property

String name

Implementation

String get name {
  int index = _path.lastIndexOf(_sep);
  return index != -1 ? _path.substring(index + 1) : null;
}