RootState constructor

RootState(
  1. Tag? tag
)

Implementation

RootState(Tag? tag) {
  _openedTag = tag;

  methods = {
    'process': (msg, context) => process(msg, context),
    'notify': (msg, context) => notify(msg, context),
  };
}