posix constant Null safety
Mimics the Unix file system style.
- This style does not have the notion of drives
- All file system paths are rooted at
/
- The path separator is
/
An example path in this style is /path/to/file
.
Implementation
static const FileSystemStyle posix = _Posix();