Response.html constructor

Response.html({
  1. required int statusCode,
  2. dynamic data,
  3. Map<String, String> headers = const {HttpHeaders.contentTypeHeader : 'text/html'},
})

Implementation

Response.html({
  required this.statusCode,
  this.data,
  this.headers = const {
    HttpHeaders.contentTypeHeader: 'text/html',
  },
}) : contentType = 'text/html';