SolutionSpec constructor

SolutionSpec(
  1. String name, {
  2. String? filePath,
  3. IWidgets? widgets,
  4. IActions? actions,
  5. IProperties? properties,
})

Implementation

SolutionSpec(this.name,
    {this.filePath, this.widgets, this.actions, this.properties}) {
  widgets?.registerWidgets();
  actions?.registerActions();
  properties?.registerProperties();
}