ResolutionAttempt constructor

const ResolutionAttempt({
  1. required PrebuiltSource source,
  2. required bool success,
  3. String? path,
  4. String? error,
})

Implementation

const ResolutionAttempt({
  required this.source,
  required this.success,
  this.path,
  this.error,
});