GitlabModel constructor

GitlabModel({
  1. bool enabled = false,
  2. String? token,
  3. String? projectId,
  4. String? tag,
  5. String? host,
  6. String? ref,
})

Implementation

GitlabModel({
  this.enabled = false,
  this.token,
  this.projectId,
  String? tag,
  this.host,
  String? ref,
})  : tag = tag ?? 'v0.0.1',
      ref = ref ?? 'main';