toFlutter method
Implementation
@override
TextDecoration toFlutter(AnyWidgetContext config) {
return map(
lineThrough: (_) => TextDecoration.lineThrough,
none: (_) => TextDecoration.none,
overline: (_) => TextDecoration.overline,
underline: (_) => TextDecoration.underline,
);
}