UnknownError constructor

const UnknownError({
  1. required dynamic error,
})

Constructs an UnknownError response with the given error object.

Implementation

const UnknownError({
  required this.error,
});