Project constructor
Project({
- required String projectImportName,
- required LightThemeColors lightThemeColors,
- required DarkThemeColors darkThemeColors,
- required List<
String> screens, - required String currentTheme,
Project constructor.
Implementation
Project({
required this.projectImportName,
required this.lightThemeColors,
required this.darkThemeColors,
required this.screens,
required this.currentTheme,
});