ProgressionEvent constructor

ProgressionEvent(
  1. ProgressionType type,
  2. ProgressionStatus status, {
  3. ProgressionSource source = ProgressionSource.Undefined,
  4. String? name,
  5. int value = 0,
  6. 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;
}