SolutionSpec constructor
SolutionSpec(
- String name, {
- String? filePath,
- IWidgets? widgets,
- IActions? actions,
- IProperties? properties,
Implementation
SolutionSpec(this.name,
{this.filePath, this.widgets, this.actions, this.properties}) {
widgets?.registerWidgets();
actions?.registerActions();
properties?.registerProperties();
}