GitConfig constructor

GitConfig({
  1. required String repositoryUrl,
  2. String? branch,
  3. String? secretArn,
})

Implementation

GitConfig({
  required this.repositoryUrl,
  this.branch,
  this.secretArn,
});