printWrapped method
Implementation
void printWrapped(final String text) {
for (final RegExpMatch match in RegExp('.{1,750}').allMatches(text)) {
_logger.i(match.group(0));
}
}
void printWrapped(final String text) {
for (final RegExpMatch match in RegExp('.{1,750}').allMatches(text)) {
_logger.i(match.group(0));
}
}