BaseResponse<T> constructor

BaseResponse<T>({
  1. T? data,
  2. String? error,
  3. bool? isSuccess,
  4. int? statusCode,
  5. bool? success,
  6. DateTime? timestamp,
  7. String? errorMessage,
  8. String? error_msg,
  9. String? requestId,
})

Implementation

BaseResponse({
  this.data,
  this.error,
  this.isSuccess,
  this.statusCode,
  this.success,
  this.timestamp,
  this.errorMessage,
  this.error_msg,
  this.requestId,
});