LaunchConfigState constructor

LaunchConfigState({
  1. required String? defaultProjectId,
  2. required ProjectLaunch projectSetup,
  3. List<String> existingProjectIds = const [],
})

Implementation

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