store method

Future<bool> store()

Implementation

Future<bool> store() async {
  file.createSync(recursive: true);
  await file.writeAsBytes(bytes);
  stored.completed();
  return true;
}