exportToExcel<R extends FastCalculatorResults> static method

FastCalculatorBlocEvent<R> exportToExcel<R extends FastCalculatorResults>(
  1. BuildContext context
)

Implementation

static FastCalculatorBlocEvent<R>
    exportToExcel<R extends FastCalculatorResults>(BuildContext context) {
  return FastCalculatorBlocEvent<R>(
    payload: FastCalculatorBlocEventPayload<R>(value: context),
    type: FastCalculatorBlocEventType.exportToExcel,
  );
}