Element constructor

Element({
  1. required Iterable<Element> children,
  2. String? id,
  3. Iterable<String>? classes,
  4. Iterable<String>? inlineStyles,
  5. Map<String, String?>? args,
})

Implementation

Element({
  required this.children,
  this.id,
  this.classes,
  this.inlineStyles,
  this.args,
});