carpBasePath property

Future<String> carpBasePath

The base path for storing all CARP related files on the form

<localApplicationPath>/carp

Implementation

Future<String> get carpBasePath async {
  if (_carpBasePath == null) {
    final directory = await Directory('${await localApplicationPath}/carp')
        .create(recursive: true);
    _carpBasePath = directory.path;
  }

  return _carpBasePath!;
}