FileOutboxStore constructor

FileOutboxStore(
  1. String path
)

Implementation

FileOutboxStore(String path) : file = File(path) {
  file.parent.createSync(recursive: true);
  if (!file.existsSync()) file.createSync();
}