CafResponse constructor
const
CafResponse({
- bool cancelled = false,
- bool loading = false,
- bool loaded = false,
- CafErrorResponse? error,
- CafSuccessResponse? success,
- CafFailureResponse? failure,
- CafLog? log,
Implementation
const CafResponse({
this.cancelled = false,
this.loading = false,
this.loaded = false,
this.error,
this.success,
this.failure,
this.log,
});