defaultLogBuilder static method

Widget defaultLogBuilder(
  1. LogValueNotifier? listenable,
  2. BoxConstraints constraints,
  3. bool mergeDuplicateLogs
)

Implementation

static Widget defaultLogBuilder(LogValueNotifier? listenable,
    BoxConstraints constraints, bool mergeDuplicateLogs) {
  return LogPanel(
    minHeight: constraints.minHeight,
    maxHeight: constraints.maxHeight,
    mergeDuplicateLogs: mergeDuplicateLogs,
  );
}