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