h3 method

Widget h3()

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