I was following - how to create directory from https://docs.flutter.io/flutter/dart-io/Directory-class.html
new Directory('dir/subdir').create(recursive: true)
// The created directory is returned as a Future.
.then((Directory directory) {
print(directory.path);
});
This is the error I am getting:
FileSystemException: Creation failed, path = 'dir' (OS Error: Read-only file system, errno = 30)
I have enabled Storage(WRITE_EXTERNAL_STORAGE)
permission.
(Android device)
What am I missing?