ProjectLocation constructor
ProjectLocation({
- String? nodeKey,
- String? widgetClassKey,
- String? widgetClassName,
- FFWorkspaceTab? workspaceTab,
- FFSettingsTab? settingsTab,
- FFThemeSettingsTab? themeSettingsTab,
- FFAppValuesTab? appValuesTab,
- FFDataSchemaTab? dataSchemaTab,
Implementation
factory ProjectLocation({
$core.String? nodeKey,
$core.String? widgetClassKey,
$core.String? widgetClassName,
FFWorkspaceTab? workspaceTab,
FFSettingsTab? settingsTab,
FFThemeSettingsTab? themeSettingsTab,
FFAppValuesTab? appValuesTab,
FFDataSchemaTab? dataSchemaTab,
}) {
final result = create();
if (nodeKey != null) result.nodeKey = nodeKey;
if (widgetClassKey != null) result.widgetClassKey = widgetClassKey;
if (widgetClassName != null) result.widgetClassName = widgetClassName;
if (workspaceTab != null) result.workspaceTab = workspaceTab;
if (settingsTab != null) result.settingsTab = settingsTab;
if (themeSettingsTab != null) result.themeSettingsTab = themeSettingsTab;
if (appValuesTab != null) result.appValuesTab = appValuesTab;
if (dataSchemaTab != null) result.dataSchemaTab = dataSchemaTab;
return result;
}