storeFile method

Future<void> storeFile(
  1. String fileName,
  2. Uint8List bytes
)

Store binary data with the given fileName.

Implementation

Future<void> storeFile(String fileName, Uint8List bytes) async {
  await _emitter.store(fileName, bytes);
}