InitialConfig constructor

InitialConfig({
  1. String? defaultBranch,
  2. List<String>? gitignores,
  3. String? license,
  4. String? readme,
})

Implementation

InitialConfig({
  this.defaultBranch,
  this.gitignores,
  this.license,
  this.readme,
});