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