MockStreamedResponse.notImplemented constructor

MockStreamedResponse.notImplemented({
  1. Stream<List<int>>? byteStream,
  2. Map<String, String>? headers,
  3. String? statusText,
})

Implementation

factory MockStreamedResponse.notImplemented(
        {Stream<List<int>>? byteStream,
        Map<String, String>? headers,
        String? statusText}) =>
    MockStreamedResponse(501,
        byteStream: byteStream, headers: headers, statusText: statusText);