pullQueueRefresh property

bool get pullQueueRefresh

Implementation

bool get pullQueueRefresh {
  if (_pullQueue.isEmpty) return false;
  if (_pulling) return false;

  final cid = _pullQueue.keys.first;
  final xx = _pullQueue.values.first;

  pullCidFromIPFS(cid, xx).then((value) {
    _pullQueue.remove(cid);
  });
  return true;
}