text method

void text(
  1. String data, {
  2. int status = HttpStatus.ok,
})

Set text response

Implementation

void text(String data, {int status = HttpStatus.ok}) {
  contentType = ContentType.text;
  this.status = status;
  body = data;
}