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