ToolStatus constructor

ToolStatus({
  1. required String name,
  2. required bool isInstalled,
  3. String? version,
  4. String? installInstructions,
  5. bool isRequired = false,
})

Implementation

ToolStatus({
  required this.name,
  required this.isInstalled,
  this.version,
  this.installInstructions,
  this.isRequired = false,
});