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