Instruction constructor

Instruction({
  1. Points? points,
  2. Annotation? annotation,
  3. int? sign,
  4. String? name,
  5. double? distance,
  6. int? time,
  7. ExtraInfoJSON? extraInfoJSON,
  8. int? length,
})

Implementation

Instruction(
    {this.points,
    this.annotation,
    this.sign,
    this.name,
    this.distance,
    this.time,
    this.extraInfoJSON,
    this.length});