feat(ui_components): make textwrapper toString useful

This commit is contained in:
Hugo Pointcheval 2023-05-02 13:32:20 +02:00
parent 635bb329ea
commit 96369e24f9
Signed by: hugo
GPG Key ID: 3AAC487E131E00BC

View File

@ -123,9 +123,5 @@ class TextWrapper {
final Color? selectionColor;
@override
String toString() => 'TextWrapper(data: $data, style: $style, '
'gradientColors: $gradientColors, textAlign: $textAlign, '
'textDirection: $textDirection, softWrap: $softWrap, '
'overflow: $overflow, maxLines: $maxLines, '
'selectionColor: $selectionColor)';
String toString() => data;
}