DataSafetyRow constructor

const DataSafetyRow({
  1. required int line,
  2. required String questionId,
  3. required String responseId,
  4. required String responseValue,
  5. required String requirement,
  6. required String label,
})

Implementation

const DataSafetyRow({
  required this.line,
  required this.questionId,
  required this.responseId,
  required this.responseValue,
  required this.requirement,
  required this.label,
});