readBytes method

Future<Uint8List?> readBytes(
  1. String fileName
)

Reads raw bytes from a file. Returns null if not found.

Implementation

Future<Uint8List?> readBytes(String fileName) {
  _validateFileName(fileName);
  return NexoraSdkPlatform.instance.readBytes(fileName);
}