Attribute.int constructor
Implementation
factory Attribute.int(String name, {required int value}) {
return Attribute._(
name: name,
value: value,
valueType: AttributeValueType.int,
kind: AttributeKind.simple,
action: AttributeAction.set
);
}