Snapshot<T> constructor

Snapshot<T>(
  1. T state,
  2. Future<void> sendEvent(
    1. BlocEvent event
    ),
  3. void sendEventSync<Tb extends BlocEvent>(
    1. Tb event
    )
)

Creates a snapshot

Implementation

Snapshot(this.state, this.sendEvent, this.sendEventSync);