replay method

void replay(
  1. Map recording
)

Allows the extension to implement custom replay functionality. recording A recording of the user interaction with the page. This should match Puppeteer's recording schema.

Implementation

void replay(Map recording) {
  _wrapped.replay(recording.jsify()!);
}