send method
send text String
Implementation
Future<void> send(
dynamic text, {
ContentType? contentType,
int statusCode = HttpStatus.ok,
}) async {
final res = response
..headers.contentType = contentType ?? ContentType.text
..statusCode = statusCode
..write(text);
await res.close();
}