factory TextModel(String content, {int width = 80}) { return TextModel.withOptions( width: width, softWrap: true, height: null, ).setContent(content); }