Pre constructor

Pre({
  1. String? id,
  2. Map<String, String>? attributes,
  3. Map<String, dynamic>? style,
  4. String? className,
  5. required List<Component>? children,
})

Implementation

Pre({
  super.id,
  super.attributes,
  super.style,
  super.className,
  required super.children,
});