Testkit constructor

Testkit({
  1. required String id,
  2. required String name,
  3. required String description,
  4. List<TestkitMarker> markers = const [],
  5. int? turnaroundTimeLower,
  6. int? turnaroundTimeUpper,
  7. double? price,
})

Implementation

Testkit({
  required this.id,
  required this.name,
  required this.description,
  this.markers = const [],
  this.turnaroundTimeLower,
  this.turnaroundTimeUpper,
  this.price,
});