DartPackageInfo constructor

DartPackageInfo({
  1. String? name,
  2. String? description,
  3. String? author,
  4. int? likes,
  5. String? recentVersion,
  6. List<String>? platforms = const [],
})

Implementation

DartPackageInfo({
  this.name,
  this.description,
  this.author,
  this.likes,
  this.recentVersion,
  this.platforms = const [],
});