copyWith method

LogsOutput copyWith({
  1. String? logs,
})

Creates a copy with the given fields replaced.

Implementation

LogsOutput copyWith({String? logs}) {
  return LogsOutput(logs: logs ?? this.logs);
}