setScriptState method

  1. @override
void setScriptState(
  1. String plugin,
  2. String state
)
override

Implementation

@override
void setScriptState(String plugin, String state) {
  _scriptStates[plugin] = state;
  if (!_isSaving) {
    unawaited(save(force: true, collectScriptState: false));
  }
}