TextResponse.html constructor

TextResponse.html(
  1. String _text, {
  2. int statusCode = 200,
})

Implementation

TextResponse.html(this._text, {int statusCode = 200})
    : _contentType = '${Mime.html};charset=utf-8',
      super(statusCode);