copyWith method
Implementation
AppSettings copyWith({
String? themeName,
String? lastSelectedDeviceId,
}) {
return AppSettings(
themeName: themeName ?? this.themeName,
lastSelectedDeviceId: lastSelectedDeviceId ?? this.lastSelectedDeviceId,
);
}