RepoInfo constructor

RepoInfo({
  1. required String owner,
  2. required String repo,
})

Constructs a new instance of the RepoInfo class.

Implementation

RepoInfo({
  required this.owner,
  required this.repo,
});