copyWith method
Implementation
DevOptions copyWith({
String? host,
int? port,
String? entry,
List<String>? watch,
bool? verbose,
}) {
return DevOptions(
host: host ?? this.host,
port: port ?? this.port,
entry: entry ?? this.entry,
watch: watch ?? this.watch,
verbose: verbose ?? this.verbose,
);
}