Attribute.decreasedCounter constructor
Implementation
factory Attribute.decreasedCounter(String name, {int decValue = 1}) {
return Attribute._(
name: name,
value: decValue,
valueType: AttributeValueType.int,
kind: AttributeKind.counter,
action: AttributeAction.dec
);
}