fullPrint function

void fullPrint (
  1. String text
)

👨‍💻 Full Print

Gives larger debug print output

void fullPrint(String text)

Implementation

void fullPrint(String text) {
  /// 800 is the size of each chunk
  final pattern = RegExp('.{1,800}');
  pattern.allMatches(text).forEach((match) => print(match.group(0)));
}