FastStoreBlocEvent.init constructor

FastStoreBlocEvent.init(
  1. FastAppInfoDocument appInfo, {
  2. IFastErrorReporter? errorReporter,
})

Implementation

FastStoreBlocEvent.init(
  FastAppInfoDocument appInfo, {
  IFastErrorReporter? errorReporter,
}) : super(
        type: FastStoreBlocEventType.init,
        payload: FastStoreBlocPayload(
          errorReporter: errorReporter,
          appInfo: appInfo,
        ),
      );