VcRepository constructor

const VcRepository({
  1. required String id,
  2. required String name,
  3. String description = '',
  4. String cloneUrl = '',
  5. String defaultBranch = '',
  6. bool isPrivate = false,
  7. String owner = '',
  8. String fullName = '',
  9. String webUrl = '',
})

Implementation

const VcRepository({
  required this.id,
  required this.name,
  this.description = '',
  this.cloneUrl = '',
  this.defaultBranch = '',
  this.isPrivate = false,
  this.owner = '',
  this.fullName = '',
  this.webUrl = '',
});