copyWith method
Implementation
AppLogsState copyWith({
final List<EditorLogEntity>? logs,
}) {
return AppLogsState(
logs: logs ?? this.logs,
);
}
AppLogsState copyWith({
final List<EditorLogEntity>? logs,
}) {
return AppLogsState(
logs: logs ?? this.logs,
);
}