Level constructor

Level({
  1. String? name,
  2. double? number,
})

Implementation

Level({
  this.name,
  this.number,
});