error property

Object? get error

Implementation

Object? get error => switch (this) {
  ErrorStatus(:final error) => error,
  _ => null,
};