Achievement constructor

Achievement({
  1. String? androidID,
  2. String iOSID = "",
  3. double percentComplete = 100,
  4. int steps = 0,
})

Implementation

Achievement(
    {this.androidID,
    this.iOSID = "",
    this.percentComplete = 100,
    this.steps = 0});