initialise abstract method

Future<void> initialise({
  1. String? rootDirectory,
})

Initialise this backend, and create the root

Prefer to leave rootDirectory as null, which will use getApplicationDocumentsDirectory(). Alternatively, pass a custom directory - it is recommended to not use a typical cache directory, as the OS can clear these without notice at any time.

Implementation

Future<void> initialise({
  String? rootDirectory,
});