pullXXfromCache method

Future<Uint8List> pullXXfromCache(
  1. String cid,
  2. int xx
)

Implementation

Future<Uint8List> pullXXfromCache(String cid, int xx) async {
  /*if (cid.isEmpty) {
    return Uint8List(0);
  }*/
  if (homeSite == null) return Uint8List(0);
  return homeSite!.xxC.pullXX(xx, '', '');
}