0 purchases
storage access
storage_access #
Allow correct write/read of files as strings, using:
path_provider
Import:
import 'package:storage_access/storage_access.dart' as storage;
copied to clipboard
Write:
Returns Future<bool>, true if all okay
final fileWasSaved= await storage.write(
data: "I am very important data",
asFile: "how_to_prepare_horkers.xml"
);
if (fileWasSaved == false) beHeroAndFixIt();
copied to clipboard
Read:
Returns Future<String>, null on any error
final myTreasure= await storage.read(
fromFile: "how_to_prepare_horkers.xml"
);
if (myTreasure != null) cookHorkers();
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.