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