InputDescriptor constructor

InputDescriptor({
  1. String? id,
  2. String? name,
  3. String? purpose,
  4. FormatProperty? format,
  5. InputDescriptorConstraints? constraints,
  6. List<String>? group,
})

Implementation

InputDescriptor(
    {String? id,
    this.name,
    this.purpose,
    this.format,
    this.constraints,
    this.group})
    : id = id ?? Uuid().v4();