ItemValue constructor

ItemValue({
  1. String? name,
  2. String? description,
  3. String? value,
  4. bool? state,
})

Implementation

ItemValue({
  this.name,
  this.description,
  this.value,
  this.state,
});