Version constructor

Version({
  1. required String num,
  2. required int downloads,
  3. required String createdAt,
  4. required bool yanked,
})

Implementation

Version({
  required this.num,
  required this.downloads,
  required this.createdAt,
  required this.yanked,
});