TinkStateEvent<S>.error constructor
TinkStateEvent<S>.error (
- S value,
- TinkStateEventType type, {
- Ulid? id,
- Actor? actor,
Implementation
factory TinkStateEvent.error(S value, TinkStateEventType type,
{Ulid? id, Actor? actor}) {
return TinkStateEvent._(
id ??= Ulid(), 'error', value, actor ??= unknown, type, false);
}