BaseResp<T> constructor

BaseResp<T>(
  1. bool isSuccess, {
  2. T? data,
  3. CstException? error,
})

Implementation

BaseResp(this.isSuccess, {this.data, this.error});