LogRow constructor

const LogRow({
  1. required List<LogBlock> children,
  2. List<LogBlock> tail = const [],
  3. required int maxLength,
  4. int? maxLines,
  5. bool when(
    1. Log log
    )?,
  6. LogDivider defaultDivider = const LogDivider(' '),
  7. bool alignTail = true,
})

Implementation

const LogRow({
  required this.children,
  this.tail = const [],
  required int this.maxLength,
  this.maxLines,
  this.when,
  this.defaultDivider = const LogDivider(' '),
  this.alignTail = true,
});