xSmall method

Widget xSmall()

Implementation

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