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