HtmlResponsePage constructor

HtmlResponsePage(
  1. dynamic type,
  2. String html,
  3. Uri baseUrl
)

Constructs a HtmlResponsePage with the provided type, html content, and baseUrl.

  • type: The type of response page.
  • html: The HTML content of the page.
  • baseUrl: The base URL of the page.

Implementation

HtmlResponsePage(type, this.html, this.baseUrl) : super(type);