dispatchDecodeResponse method

dynamic dispatchDecodeResponse(
  1. Store store
)

Implementation

dispatchDecodeResponse(Store store) {
  if (this.decodeResponse != null && this.response != null) {
    this.decodeResponse!(store, this.response!);
  }
}