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