x6Large method

Widget x6Large()

Implementation

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