copyWith method
Creates a copy with the given fields replaced.
Implementation
LogsOutput copyWith({String? logs}) {
return LogsOutput(logs: logs ?? this.logs);
}
Creates a copy with the given fields replaced.
LogsOutput copyWith({String? logs}) {
return LogsOutput(logs: logs ?? this.logs);
}