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