NoInternetConnectionError<T> constructor

const NoInternetConnectionError<T>({
  1. String slug = '',
  2. String msg = '',
  3. String stackTrace = '',
  4. Maybe<T> response = const Nothing(),
})

Implementation

const NoInternetConnectionError({
  super.slug,
  super.msg,
  super.stackTrace,
  super.response,
});