merge method
合并新的日志配置
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,
);
}