InstallationInfo constructor

InstallationInfo({
  1. required InstallationSource source,
  2. String? gitUrl,
  3. String? gitRef,
  4. String? version,
})

Implementation

InstallationInfo({
  required this.source,
  this.gitUrl,
  this.gitRef,
  this.version,
});