BaseResponse<T> constructor

BaseResponse<T>({
  1. T? data,
  2. String message = '',
  3. int status = 0,
})

Implementation

BaseResponse({this.data, this.message = '', this.status = 0});