FastCalculatorBlocEvent<R extends FastCalculatorResults> constructor

const FastCalculatorBlocEvent<R extends FastCalculatorResults>({
  1. required FastCalculatorBlocEventType type,
  2. FastCalculatorBlocEventPayload<R>? payload,
})

Implementation

const FastCalculatorBlocEvent({
  required FastCalculatorBlocEventType super.type, // The type of the event.
  super.payload, // An optional payload associated with the event.
});