createStyleUpdate static method
Create a style update change
Implementation
static Map<String, dynamic> createStyleUpdate(
String selector, Map<String, String> style) {
return {
'action': 'update_style',
'selector': selector,
'style': style,
};
}