InstallationResult constructor

InstallationResult({
  1. required bool installSuccessful,
  2. required String packageName,
  3. String? version,
  4. List<String> warnings = const [],
  5. String? errorMessage,
  6. Map<String, String> resolvedVersions = const {},
})

Implementation

InstallationResult({
  required this.installSuccessful,
  required this.packageName,
  this.version,
  this.warnings = const [],
  this.errorMessage,
  this.resolvedVersions = const {},
});