MockStreamedResponse.notFound constructor
MockStreamedResponse.notFound({})
Implementation
factory MockStreamedResponse.notFound(
{Stream<List<int>>? byteStream,
Map<String, String>? headers,
String? statusText}) =>
MockStreamedResponse(404,
byteStream: byteStream, headers: headers, statusText: statusText);