Source constructor

Source({
  1. String? password,
  2. String? revision,
  3. String? sshKey,
  4. SourceType? type,
  5. String? url,
  6. String? username,
})

Implementation

Source({
  this.password,
  this.revision,
  this.sshKey,
  this.type,
  this.url,
  this.username,
});