AttrState constructor

AttrState()

Implementation

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