lineThrough property

VRichText get lineThrough

Line through decoration for all spans.

Implementation

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