RestApiMock<C extends Object> constructor
RestApiMock<C extends Object> ({
- required C content,
- RestResponseType responseType = RestResponseType.success,
Implementation
RestApiMock({
required C content,
RestResponseType responseType = RestResponseType.success,
}) : _content = content,
_responseType = responseType;