NetworkResponse constructor

NetworkResponse({
  1. required dynamic data,
  2. required int? status,
  3. DioExceptionType? typeError,
  4. String? message,
})

Implementation

NetworkResponse({
  required this.data,
  required this.status,
  this.typeError,
  this.message,
});