pullLocalXX method

Future<Uint8List?> pullLocalXX(
  1. int xxInt
)

Implementation

Future<Uint8List?> pullLocalXX(int xxInt) async {
  if (_xxStash[xxInt] != null) return _xxStash[xxInt]!;
  if (_xxToCid[xxInt] != null) {
    return _io?.readCid(_xxToCid[xxInt]!);
  }
  return _io!.readCidForXX(xxInt).then((value) async {
    if (value == null) return null;
    return _io?.readCid(value);
  });
}