createInitDescription method

void createInitDescription()

Prints the initial description of the logger box with centered alignment.

Implementation

void createInitDescription() {
  List<String> lengthSplitterObject = splitObjectIfTooLong(
      object:
          "Welcome to Proctologger, the Flutter logger that will help you dig deep into your code!");
  for (var i = 0; i < lengthSplitterObject.length; i++) {
    debugPrint(createLine(
        primaryMessage: lengthSplitterObject[i],
        fill: ' ',
        alignment: LoggerAlignmentState.center));
  }
}