dAll function

void dAll(
  1. Object object
)

Implementation

void dAll(Object object) {
  final output = "${Trace.current()} | $object";

  // the console prints the first 1000+ char and discard the rest so this work around.
  final pattern = RegExp('.{1,1000}'); // 1000 is the size of each chunk
  pattern.allMatches(output).forEach((match) => debugPrint(match.group(0)));
}