DependencyResolutionResult constructor

DependencyResolutionResult({
  1. required bool success,
  2. List<String> resolvedOrder = const [],
  3. List<String> errors = const [],
  4. List<String> warnings = const [],
})

Implementation

DependencyResolutionResult({
  required this.success,
  this.resolvedOrder = const [],
  this.errors = const [],
  this.warnings = const [],
});