GitSource constructor

const GitSource({
  1. required String url,
  2. String? revision,
  3. bool allowUnrestrictedGitPush = false,
})

Implementation

const GitSource({
  required this.url,
  this.revision,
  this.allowUnrestrictedGitPush = false,
});