AppResponse<T> constructor

AppResponse<T>({
  1. String? baseUrl,
  2. T? data,
  3. bool? status,
  4. String? message,
})

Implementation

AppResponse({
  this.baseUrl,
  this.data,
  this.status,
  this.message,
});