x7Large method

Widget x7Large()

Implementation

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