InternetConnectionIssueFailure constructor

InternetConnectionIssueFailure({
  1. String? original,
  2. String? domain,
  3. String? address,
  4. int? port,
  5. int? osErrorCode,
  6. String? osErrorMessage,
})

Implementation

InternetConnectionIssueFailure({
  this.original,
  this.domain,
  this.address,
  this.port,
  this.osErrorCode,
  this.osErrorMessage,
});