NetworkResponseData constructor

const NetworkResponseData({
  1. required bool hasError,
  2. required String error,
  3. String? status,
  4. dynamic data,
  5. String? speech,
})

Implementation

const NetworkResponseData({
  required this.hasError,
  required this.error,
  this.status,
  this.data,
  this.speech,
});