LaunchConfigState constructor
LaunchConfigState({
- required String? defaultProjectId,
- required ProjectLaunch projectSetup,
- List<
String> existingProjectIds = const [],
Implementation
LaunchConfigState({
required this.defaultProjectId,
required final ProjectLaunch projectSetup,
final List<String> existingProjectIds = const [],
}) : _projectSetup = projectSetup,
_existingProjectIds = existingProjectIds {
_initializeProjectSelectionFormState();
}