x5Large method

Widget x5Large()

Implementation

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