toFile method
Converts this path to a File object
Returns a File object for this path
Example:
final file = '/path/to/document.pdf'.toFile();
Implementation
File toFile() => File(this);
Converts this path to a File object
Returns a File object for this path
Example:
final file = '/path/to/document.pdf'.toFile();
File toFile() => File(this);