Attribute.remove constructor
Attribute.remove(
- Entity target,
- AttributeType attribute, {
- required String? uuid,
removes a modifier with an uuid again
Implementation
Attribute.remove(
this.target,
this.attribute, {
required this.uuid,
}) : _type = _AttributeType.remove,
assert(uuid != null);