Crate constructor

Crate({
  1. String? description,
  2. required String name,
  3. required String newestVersion,
  4. required int recentDownloads,
})

Implementation

Crate({
  this.description,
  required this.name,
  required this.newestVersion,
  required this.recentDownloads,
});