Framework constructor

Framework({
  1. List<String>? category,
  2. List<Control>? controls,
  3. String? displayName,
  4. String? name,
  5. String? type,
})

Implementation

Framework({
  this.category,
  this.controls,
  this.displayName,
  this.name,
  this.type,
});