encode static method

Map<String, dynamic> encode(
  1. Action value
)

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;
}