EnvironmentSelectionInfo constructor

const EnvironmentSelectionInfo({
  1. required List<EnvironmentResource> availableEnvironments,
  2. EnvironmentResource? selectedEnvironment,
  3. String? selectedEnvironmentSource,
})

Implementation

const EnvironmentSelectionInfo({
  required this.availableEnvironments,
  this.selectedEnvironment,
  this.selectedEnvironmentSource,
});