normal method

Widget normal()

Implementation

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