GeneralResponse<T> constructor

GeneralResponse<T>({
  1. T? data,
  2. DioException? dioException,
  3. ApiError? apiError,
  4. required int statusCode,
})

Implementation

GeneralResponse({
  this.data,
  this.dioException,
  this.apiError,
  required this.statusCode,
});