Attribute.remove constructor

Attribute.remove(
  1. Entity target,
  2. AttributeType attribute, {
  3. 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);