MockResponse.notImplemented constructor

MockResponse.notImplemented({
  1. dynamic body,
  2. Map<String, String>? headers,
  3. String? statusText,
})

Implementation

factory MockResponse.notImplemented(
        {body, Map<String, String>? headers, String? statusText}) =>
    MockResponse(501, body: body, headers: headers, statusText: statusText);