copyWith method
Implementation
LogStreamFile copyWith({
String? path,
int? maxFileSize,
bool? redirectStderr,
}) => LogStreamFile(
path: path ?? this.path,
maxFileSize: maxFileSize ?? this.maxFileSize,
redirectStderr: redirectStderr ?? this.redirectStderr,
);