replay method

  1. @deprecated
void replay(
  1. int statusCode,
  2. dynamic body, {
  3. Map<String, String>? headers,
})

Type problems. Will be removed in next versions. Use reply method.

Implementation

@deprecated
void replay(int statusCode, dynamic body, {Map<String, String>? headers}) {
  reply(statusCode, body, headers: headers);
}