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