textOverflow static method
Implementation
static TextOverflow textOverflow(dynamic value) => switch (value) {
'fade' => TextOverflow.fade,
'visible' => TextOverflow.visible,
'clip' => TextOverflow.clip,
'ellipsis' => TextOverflow.ellipsis,
_ => TextOverflow.clip,
};