get method

Future<Uint8List?> get()

Implementation

Future<Uint8List?> get() async {
  try {
    return await loadAssetFile();
  } on Exception catch (e) {
    log('Error loading image from cache: $e');
    return null;
  }
}