copyWith method
Implementation
Move copyWith({
dynamic meta,
String? key,
String? name,
String? description,
String? explanation,
List<Dice>? dice,
List<EntityReference>? classKeys,
List<Tag>? tags,
MoveCategory? category,
}) =>
Move(
meta: meta ?? this.meta,
key: key ?? this.key,
name: name ?? this.name,
description: description ?? this.description,
explanation: explanation ?? this.explanation,
dice: dice ?? this.dice,
classKeys: classKeys ?? this.classKeys,
tags: tags ?? this.tags,
category: category ?? this.category,
);