configure method

  1. @override
void configure(
  1. Journify journify
)
override

Implementation

@override
configure(Journify journify) {
  super.configure(journify);

  _state = QueueState(
      "queue_flushing_plugin", journify.store, (json) => eventFromJson(json));

  _state!.init(journify.error, true);
}