ErrorResult<T> constructor

ErrorResult<T>({
  1. Exception? exception,
})

Implementation

ErrorResult({
  Exception? exception,
}) : super(
        exception: exception,
      );