italic method
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);
}