copyWith method

WindowsResult copyWith({
  1. String? exe,
  2. String? name,
  3. String? title,
})

Implementation

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