Is there a way to access the network share folder with the provided credentials in flutter?
I've tried using the Uri's constructor to pass in the credentials but I'm met with an error saying that they are invalid.
final uri = Uri(
scheme: "file",
host: 'ipaddress',
path: 'filepath',
userInfo: "username:password",
);
final file = File.fromUri(uri);
//Error thrown when trying to read file