copyWith method
Implementation
LoggingConfig copyWith({
bool? enablePrettyLogs,
bool? showEmojis,
bool? showTimestamp,
bool? showColors,
bool? showBorders,
int? lineLength,
LogLevel? minimumLevel,
bool? enabled,
bool? enableDevToolsJson,
}) => LoggingConfig(
enablePrettyLogs: enablePrettyLogs ?? this.enablePrettyLogs,
showEmojis: showEmojis ?? this.showEmojis,
showTimestamp: showTimestamp ?? this.showTimestamp,
showColors: showColors ?? this.showColors,
showBorders: showBorders ?? this.showBorders,
lineLength: lineLength ?? this.lineLength,
minimumLevel: minimumLevel ?? this.minimumLevel,
enabled: enabled ?? this.enabled,
enableDevToolsJson: enableDevToolsJson ?? this.enableDevToolsJson,
);