encode static method
Implementation
static Map<String, dynamic> encode(Action value) {
Map<String, dynamic> entityAsMap = {
"launchers" : value.launchers?.map((x0) => Launcher.encode(x0)).toList(),
"expression" : value.expression,
"states" : value.states?.map((x0) => State.encode(x0)).toList()
};
return entityAsMap;
}