NetworkException constructor

const NetworkException({
  1. required String message,
  2. StackTrace? stackTrace,
})

Exception thrown when a network error occurs.

Implementation

const NetworkException({
  required super.message,
  super.stackTrace,
});