textMuted method
Implementation
Widget textMuted() {
if (this is WrappedText) {
return (this as WrappedText)
.copyWithStyle(
(context, theme) => theme.typography.textMuted,
)
.muted();
}
return WrappedText(
style: (context, theme) => theme.typography.textMuted, child: this)
.muted();
}