A "wrapper" for text, taking in some text and a line width and returning a list of lines for the wrapped text.
text
width
typedef TextWrapper = List<String> Function(String text, int width);