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