BaseResponse<T> constructor

BaseResponse<T>({
  1. bool? success,
  2. String? message,
  3. T? data,
})

Implementation

BaseResponse({
  this.success,
  this.message,
  this.data,
});