ReceiveEvent constructor
ReceiveEvent(
- ResourceCategory category, {
- ReceiveMethod method = ReceiveMethod.Undefined,
- String? name,
- int value = 0,
- String? customString,
Implementation
ReceiveEvent(ResourceCategory category, { this.method=ReceiveMethod.Undefined, String? name, int value=0, String? customString }) {
resourceCategory = category;
this.name = name;
this.value = value;
this.customString = customString;
}