0 purchases
dbpath
dbpath #
get database path getDataBasePath()
Getting Started #
this package has only one function getDataBasePath() to get database path for android
as path_provider doesn't have it
for ios there is not database path you should use getApplicationDocumentsDirectory() from path_provider
somethinge like this
Future<String> getDBPath() async => Platform.isAndroid
? (await getDataBasePath())!
: (await getApplicationDocumentsDirectory()).path;
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.