respondWith abstract method

void respondWith(
  1. String body,
  2. int statusCode, {
  3. Map<String, String> headers = const {},
  4. Encoding encoding = utf8,
})

Set the value to respond with during an HTTP request intercept.

Implementation

void respondWith(
  String body,
  int statusCode, {
  Map<String, String> headers = const {},
  Encoding encoding = utf8,
});