CompatibilityResult constructor

CompatibilityResult({
  1. required bool isCompatible,
  2. required String packageName,
  3. String? version,
  4. List<String> conflicts = const [],
  5. List<String> warnings = const [],
  6. String? errorMessage,
})

Implementation

CompatibilityResult({
  required this.isCompatible,
  required this.packageName,
  this.version,
  this.conflicts = const [],
  this.warnings = const [],
  this.errorMessage,
});