patchMetadata<R extends FastCalculatorResults> static method
FastCalculatorBlocEvent<R>
patchMetadata<R extends FastCalculatorResults>({
- required String key,
- dynamic value,
Implementation
static FastCalculatorBlocEvent<R>
patchMetadata<R extends FastCalculatorResults>({
required String key,
dynamic value,
}) {
return FastCalculatorBlocEvent<R>(
payload: FastCalculatorBlocEventPayload<R>(key: key, value: value),
type: FastCalculatorBlocEventType.patchMetadata,
);
}