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