underline property

TextModifier get underline

Applies underline text decoration.

Implementation

TextModifier get underline => WrappedText(
      style: (context, theme) => const TextStyle(
        decoration: TextDecoration.underline,
      ),
      child: this,
    );