copyWith method
Implementation
WindowsResult copyWith({
String? exe,
String? name,
String? title,
}) {
return WindowsResult(
exe: exe ?? this.exe,
name: name ?? this.name,
title: title ?? this.title,
);
}
WindowsResult copyWith({
String? exe,
String? name,
String? title,
}) {
return WindowsResult(
exe: exe ?? this.exe,
name: name ?? this.name,
title: title ?? this.title,
);
}