Add 3 dots ellipsis to auto wrapped text

I wanted my automatically wrapped text to be the three dots … instead of wrapping to the next line and causing an overflow error:

It was super simple. Just use TextOverflow.ellipsis

in your text line

  const SizedBox(height: 8),
                                Text(widget.prayers[index].prayerRequestTitle,
                                    overflow: TextOverflow.ellipsis),
                                const SizedBox(height: 18),