updateElement method

  1. @override
void updateElement(
  1. String tag,
  2. String? id,
  3. String? classes,
  4. Map<String, String>? styles,
  5. Map<String, String>? attributes,
  6. 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;
}