debugPrintWrapped static method
Implementation
static void debugPrintWrapped(String text) {
final Pattern pattern = RegExp('.{1,800}'); // 800 is the size of each chunk
pattern.allMatches(text).forEach(_printMatch);
}
static void debugPrintWrapped(String text) {
final Pattern pattern = RegExp('.{1,800}'); // 800 is the size of each chunk
pattern.allMatches(text).forEach(_printMatch);
}