DataSourceParameter constructor

DataSourceParameter({
  1. List<String>? allowedValues,
  2. bool? deprecated,
  3. String? description,
  4. String? displayName,
  5. List<DataSourceParameter>? fields,
  6. bool? immutable,
  7. double? maxValue,
  8. double? minValue,
  9. String? paramId,
  10. bool? recurse,
  11. bool? repeated,
  12. bool? required,
  13. String? type,
  14. String? validationDescription,
  15. String? validationHelpUrl,
  16. String? validationRegex,
})

Implementation

DataSourceParameter({
  this.allowedValues,
  this.deprecated,
  this.description,
  this.displayName,
  this.fields,
  this.immutable,
  this.maxValue,
  this.minValue,
  this.paramId,
  this.recurse,
  this.repeated,
  this.required,
  this.type,
  this.validationDescription,
  this.validationHelpUrl,
  this.validationRegex,
});