GithubModel constructor

GithubModel({
  1. bool enabled = false,
  2. String? token,
  3. String? repo,
  4. String? tag,
})

Implementation

GithubModel({
  this.enabled = false, // Default for enabled
  this.token,
  this.repo,
  String? tag,
}) : tag = tag ?? 'v0.0.1';