ErrorResponse.noInternet constructor

ErrorResponse.noInternet({
  1. int? status,
  2. String? error = "No Internet",
  3. String? message = "Seems like you have no internet connection. Please try again later.",
  4. ImportedUserWithoutPasswordErrorResponseContent? content,
  5. String? errorType = "NO_INTERNET",
  6. List<Error>? errors,
  7. String? path,
})

Implementation

ErrorResponse.noInternet({
  this.status,
  this.error = "No Internet",
  this.message =
      "Seems like you have no internet connection. Please try again later.",
  this.content,
  this.errorType = "NO_INTERNET",
  this.errors,
  this.path,
});