ReplicateModel constructor

ReplicateModel({
  1. required String url,
  2. required String owner,
  3. required String name,
  4. required String description,
  5. required String? visibility,
  6. required String? githubUrl,
  7. required String? paperUrl,
  8. required String? licenseUrl,
  9. required Map<String, dynamic>? latestVersion,
})

Implementation

ReplicateModel({
  required this.url,
  required this.owner,
  required this.name,
  required this.description,
  required this.visibility,
  required this.githubUrl,
  required this.paperUrl,
  required this.licenseUrl,
  required this.latestVersion,
});