Modifiable constructor

Modifiable({
  1. String? name = "",
  2. String? type,
  3. dynamic value,
  4. bool? disabled = false,
  5. List? options,
  6. List<String>? disabledOptions,
  7. InitRange? intRange,
})

Implementation

Modifiable({
  this.name = "",
  this.type,
  this.value,
  this.disabled = false,
  this.options,
  this.disabledOptions,
  this.intRange,
});