localDocPath property

Future<String> get localDocPath

Implementation

Future<String> get localDocPath async {
  final directory = await getApplicationDocumentsDirectory();
  return directory.path;
}