lead method

Widget lead()

Implementation

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