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