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