decode static method
Implementation
static FCallibriStimulatorMAState decode(Object result) {
result as List<Object?>;
return FCallibriStimulatorMAState(
stimulatorState: FCallibriStimulatorState.values[result[0]! as int],
maState: FCallibriStimulatorState.values[result[1]! as int],
);
}