GetBlockHelperState constructor

GetBlockHelperState({
  1. required String helper,
  2. required int symbol,
  3. required int line,
})

Implementation

GetBlockHelperState({
  required this.helper,
  required this.symbol,
  required this.line,
}) {
  methods = {
    'process': (msg, context) => process(msg, context),
    'notify': (msg, context) => notify(msg, context),
  };
}