italic method

Widget italic()

Implementation

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