underline property

TextModifier get underline

Implementation

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