printWrapped method

void printWrapped(
  1. String text
)

Implementation

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