peek method

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

Peek Retrieves, but does not remove, the head of this queue, or returns None if this queue is empty.

Implementation

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