$b function

dynamic $b({
  1. Object? content,
  2. bool? hidden,
  3. bool commented = false,
})

Creates a b node.

Implementation

$b({Object? content, bool? hidden, bool commented = false}) =>
    $tag('b', content: content, hidden: hidden, commented: commented);