copyWith method
Implementation
FoxLoggerSettings copyWith({
String? defaultTitle,
bool? enable,
LogLevel? level,
String? lineSymbol,
int? maxLineWidth,
bool? enableColors,
}) {
return FoxLoggerSettings(
defaultTitle: defaultTitle ?? this.defaultTitle,
enable: enable ?? this.enable,
level: level ?? this.level,
lineSymbol: lineSymbol ?? this.lineSymbol,
maxLineWidth: maxLineWidth ?? this.maxLineWidth,
enableColors: enableColors ?? this.enableColors,
);
}