Attribute.get_modifier constructor

Attribute.get_modifier(
  1. Entity target,
  2. AttributeType attribute, {
  3. required String? uuid,
  4. double? scale,
})

gets the modifiers value by uuid

Implementation

Attribute.get_modifier(
  this.target,
  this.attribute, {
  required this.uuid,
  this.scale,
})  : _type = _AttributeType.get_modifier,
      assert(uuid != null);