UnknownError constructor

UnknownError({
  1. required String message,
  2. RequestOptions? requestOptions,
  3. StackTrace? stackTrace,
  4. Object? originalError,
  5. DateTime? timestamp,
})

Implementation

UnknownError({
  required super.message,
  super.requestOptions,
  super.stackTrace,
  super.originalError,
  super.timestamp,
});