patchValue<R extends FastCalculatorResults> static method

FastCalculatorBlocEvent<R> patchValue<R extends FastCalculatorResults>({
  1. required String key,
  2. dynamic value,
})

Implementation

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