html static method

Response html(
  1. dynamic htmlData, {
  2. Map<String, String> headers = const {},
})

Implementation

static Response html(
  dynamic htmlData, {
  Map<String, String> headers = const {},
}) =>
    Response(
      data: htmlData,
      responseType: ResponseType.html,
      headers: headers,
    );