italic method
斜体
Implementation
Text italic() {
var newStyle = const TextStyle(fontStyle: FontStyle.italic);
return copyWith(style: style?.merge(newStyle) ?? newStyle);
}
斜体
Text italic() {
var newStyle = const TextStyle(fontStyle: FontStyle.italic);
return copyWith(style: style?.merge(newStyle) ?? newStyle);
}