CheckInfo constructor

const CheckInfo({
  1. required String name,
  2. required String description,
  3. required CheckStatus status,
  4. required List<CheckLog> logs,
  5. Object? data,
})

Implementation

const CheckInfo({
  required this.name,
  required this.description,
  required this.status,
  required this.logs,
  this.data,
});