AppResponse<T> constructor

AppResponse<T>({
  1. T? data,
  2. dynamic error,
})

Implementation

AppResponse({
  this.data,
  this.error,
});