bold property

VRichText get bold

Applies bold style to all spans.

Implementation

VRichText get bold => _applyStyleToAll(
  (old) => old.merge(const TextStyle(fontWeight: FontWeight.bold)),
);