PubGlobalGitPackageInstall constructor

PubGlobalGitPackageInstall(
  1. String name, {
  2. Version? version,
  3. required String gitUrl,
  4. String? gitPath,
  5. String? gitRef,
})

Global package from git.

Implementation

PubGlobalGitPackageInstall(
  super.name, {
  super.version,
  required this.gitUrl,
  this.gitPath,
  this.gitRef,
}) {
  _source = gitUrl;
}