stringify method

void stringify(
  1. Map recording
)

Converts a recording from the Recorder panel format into a string. recording A recording of the user interaction with the page. This should match Puppeteer's recording schema.

Implementation

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