merge method

LogConfig merge([
  1. LogConfig? other
])

合并新的日志配置

Implementation

LogConfig merge([LogConfig? other]) {
  if (other == null) return this;
  return copyWith(
    methodCount: other.methodCount,
    lineLength: other.lineLength,
    printTitle: other.printTitle,
    color: other.color,
    autoWrap: other.autoWrap,
    excludePaths: other.excludePaths,
  );
}