underline property

VRichText get underline

Underline decoration for all spans.

Implementation

VRichText get underline => _applyStyleToAll(
  (old) => old.merge(const TextStyle(decoration: TextDecoration.underline)),
);