Element constructor

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

Implementation

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