thin method

Widget thin()

Implementation

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