FastAppLoaderBlocEvent.init constructor

FastAppLoaderBlocEvent.init(
  1. BuildContext context, {
  2. Iterable<FastJob>? jobs,
  3. IFastErrorReporter? errorReporter,
})

Implementation

FastAppLoaderBlocEvent.init(
  BuildContext context, {
  Iterable<FastJob>? jobs,
  IFastErrorReporter? errorReporter,
}) : this(
        type: FastAppLoaderBlocEventType.init,
        payload: FastAppLoaderBlocEventPayload(
          jobs: jobs,
          context: context,
          errorReporter: errorReporter,
        ),
      );