insertToQueue method

String insertToQueue(
  1. int xxHash,
  2. Uint8List attachement
)

Implementation

String insertToQueue(int xxHash, Uint8List attachement) {
  if (_inserted[xxHash] != null) return _inserted[xxHash]!;
  if (_queued[xxHash] != null) {
    return '';
  }
  _queued[xxHash] = attachement;
  return '';
}