GitHubContent constructor

GitHubContent({
  1. required String name,
  2. required String path,
  3. required int size,
  4. required String url,
  5. required String type,
  6. String? downloadUrl,
})

Creates a new GitHubContent instance.

Implementation

GitHubContent({
  required this.name,
  required this.path,
  required this.size,
  required this.url,
  required this.type,
  this.downloadUrl,
});