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