updateElement method
void
updateElement(
- String tag,
- String? id,
- String? classes,
- Map<
String, String> ? styles, - Map<
String, String> ? attributes, - Map<
String, EventCallback> ? events,
override
Implementation
@override
void updateElement(String tag, String? id, String? classes, Map<String, String>? styles,
Map<String, String>? attributes, Map<String, EventCallback>? events) {
this.tag = tag;
this.id = id;
this.classes = classes;
this.styles = styles;
this.attributes = attributes;
}