ProgressionEvent constructor
ProgressionEvent(
- ProgressionType type,
- ProgressionStatus status, {
- ProgressionSource source = ProgressionSource.Undefined,
- String? name,
- int value = 0,
- String? customString,
Implementation
ProgressionEvent(this.type, this.status, { this.source=ProgressionSource.Undefined, String? name, int value=0, String? customString }) {
this.name = name;
this.value = value;
this.customString = customString;
}