sans method

Widget sans()

Implementation

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