getLocalPath function

Future<String> getLocalPath(
  1. String path
)

Implementation

Future<String> getLocalPath(String path) async {
  return '${(await getApplicationSupportDirectory()).path}/$path';
}