ChainResult<M, R> constructor

ChainResult<M, R>({
  1. required M extracted,
  2. required Response<R> response,
  3. bool hasChainLoading = false,
})

Implementation

ChainResult({
  required this.extracted,
  required this.response,
  bool hasChainLoading = false,
}) : _hasChainLoading = hasChainLoading;