NoInternetError constructor

NoInternetError([
  1. String? details
])

Implementation

NoInternetError([String? details])
  : super(
      code: 503,
      message: "Service Unavailable",
      details: details ?? "No Internet Connection",
    );