pre function

Element pre(
  1. dynamic children, {
  2. String? id,
  3. String? className,
  4. Map<String, dynamic>? attributes,
})

Implementation

Element pre(
  dynamic children, {
  String? id,
  String? className,
  Map<String, dynamic>? attributes,
}) =>
    _el('pre', children, id: id, className: className, attributes: attributes);