LxError<T> constructor

const LxError<T>(
  1. Object error, [
  2. StackTrace? stackTrace,
  3. T? lastValue
])

Creates an error status optionally carrying the lastValue.

Implementation

const LxError(this.error, [this.stackTrace, T? lastValue]) : super(lastValue);