Loads a single fileName to the cache but returns it as a list of bytes.
fileName
Future<Uint8List> loadAsBytes(String fileName) async { return (await loadAsFile(fileName)).readAsBytes(); }