pop method

  1. @MPI(name: "mesh.chan.pop")
Future<Uint8List?> pop(
  1. Duration timeout,
  2. String topic, {
  3. Context? ctx,
})

Pop Retrieves and removes the head of this queue, or returns None if this queue is empty.

Implementation

@MPI(name: "mesh.chan.pop")
Future<Uint8List?> pop(Duration timeout, String topic, {Context? ctx}) {
  throw UnimplementedError('pop() has not been implemented.');
}