replay method

Future<void> replay([
  1. int? stopAt
])

Replay the parked messages for this subscription.

This will push the parked messages to subscribers before any new events on the subscription.

Use stopAt to specify the number of parked messages to replay.

Implementation

Future<void> replay([int? stopAt]) async {
  return _onReplay(stopAt);
}