ellipsis method

Widget ellipsis()

Implementation

Widget ellipsis() {
  if (this is WrappedText) {
    return (this as WrappedText).copyWith(
      overflow: (context, theme) => TextOverflow.ellipsis,
    );
  }
  return WrappedText(
    overflow: (context, theme) => TextOverflow.ellipsis,
    child: this,
  );
}