getApplicationDocumentsPath method

  1. @override
Future<String?> getApplicationDocumentsPath()
override

Path to a directory where the application may place data that is user-generated, or that cannot otherwise be recreated by your application.

Implementation

@override
Future<String?> getApplicationDocumentsPath() async {
  return _pathProvider.getApplicationDocumentsPath();
}