pushXXbytes method

Future<bool> pushXXbytes(
  1. int xxInt,
  2. Uint8List data,
  3. bool ghostMode
)

Implementation

Future<bool> pushXXbytes(int xxInt, Uint8List data, bool ghostMode) async {
  if (_xxStash[xxInt] != null) return false;
  _xxStash[xxInt] = data;
  //_diskMissing.remove(xxInt);
  return true;
}