State constructor

State({
  1. String? id,
  2. String? type,
  3. String? name,
  4. String? description,
  5. String? color,
  6. double? progression,
})

Returns a new State instance.

Implementation

State({
  this.id,
  this.type,
  this.name,
  this.description,
  this.color,
  this.progression,
});