h4 method

Widget h4()

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);
}