Checks if type(path) returns FileSystemEntityType.file.
static Future<bool> isFile(String path) => _getType(_toUtf8Array(path), true) .then((type) => (type == FileSystemEntityType.file));