NestedParameter constructor

NestedParameter({
  1. bool? boolValue,
  2. String? intValue,
  3. List<bool>? multiBoolValue,
  4. List<String>? multiIntValue,
  5. List<String>? multiValue,
  6. String? name,
  7. String? value,
})

Implementation

NestedParameter({
  this.boolValue,
  this.intValue,
  this.multiBoolValue,
  this.multiIntValue,
  this.multiValue,
  this.name,
  this.value,
});