I constructor

I(
  1. dynamic data, {
  2. Key? key,
  3. TextStyle? style,
})

斜体文本

Implementation

I(super.data, {super.key, TextStyle? style})
  : super(style: TextStyle(fontStyle: FontStyle.italic).merge(style));