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