copyWith method
Implementation
WorldLore copyWith({
WorldLoreType? loreType,
String? everybodyKnows,
String? fewKnow,
String? nobodyKnows,
String? peasantsBelieve,
String? nobilityBelieves,
String? godsPlan,
String? godsFear,
}) {
return WorldLore(
loreType: loreType ?? this.loreType,
everybodyKnows: everybodyKnows ?? this.everybodyKnows,
fewKnow: fewKnow ?? this.fewKnow,
nobodyKnows: nobodyKnows ?? this.nobodyKnows,
peasantsBelieve: peasantsBelieve ?? this.peasantsBelieve,
nobilityBelieves: nobilityBelieves ?? this.nobilityBelieves,
godsPlan: godsPlan ?? this.godsPlan,
godsFear: godsFear ?? this.godsFear,
);
}