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