x2Large method

Widget x2Large()

Implementation

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