setup method
Boxx setup for non web
Implementation
Future<void> setup() async {
try {
final directory = await getApplicationDocumentsDirectory();
path = directory.path;
} on Exception catch (e) {
debugPrint(e.toString());
}
}
Boxx setup for non web
Future<void> setup() async {
try {
final directory = await getApplicationDocumentsDirectory();
path = directory.path;
} on Exception catch (e) {
debugPrint(e.toString());
}
}