Strong constructor

Strong({
  1. String? text,
  2. String? className,
  3. String? style,
  4. Map<String, String>? attrs,
  5. List<BloomNode> children = const [],
  6. Map<String, BloomEventHandler>? on,
})

Creates a <strong> element descriptor.

Implementation

Strong({
  super.text,
  super.className,
  super.style,
  super.attrs,
  super.children = const [],
  super.on,
}) : super('strong');