exportTextOverflow function
Implementation
String? exportTextOverflow(TextOverflow? textOverflow) {
if (textOverflow == null) {
return null;
}
String rt = "ellipsis";
if (textOverflow == TextOverflow.clip) {
rt = "clip";
}
if (textOverflow == TextOverflow.fade) {
rt = "fade";
}
return rt;
}