feat: starting of manager API work.

This commit is contained in:
Aunali321
2022-08-02 00:35:11 +05:30
parent 48a65872ea
commit d9256149e7
7 changed files with 60 additions and 3 deletions

View File

@@ -1 +1,10 @@
import 'dart:io';
import 'package:permission_handler/permission_handler.dart';
import 'package:path_provider/path_provider.dart' as p;
// use path_provider to get the path of the storage directory
void getPath() async {
final path = await p.getExternalStorageDirectory();
print(path);
}