createAttributeUpdate static method
Create an attribute update change
Implementation
static Map<String, dynamic> createAttributeUpdate(
String selector, String attribute, String value) {
return {
'action': 'update_attribute',
'selector': selector,
'attribute': attribute,
'value': value,
};
}