BaseResponse<T> constructor

BaseResponse<T>({
  1. T? code,
  2. T? data,
  3. String? msg,
  4. String? error,
  5. String? status,
  6. T? result,
})

Implementation

BaseResponse({
  this.code,
  this.data,
  this.msg,
  this.error,
  this.status,
  this.result,
});