black method

Widget black()

Implementation

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