ChecklistLabels constructor

const ChecklistLabels({
  1. String document = 'Checklist',
  2. String item = 'Item',
  3. String mark = 'Mark',
  4. String note = 'Note',
  5. Map<CheckMark, String> marks = const <CheckMark, String>{CheckMark.open : 'Open', CheckMark.done : 'Done', CheckMark.pass : 'Pass', CheckMark.fail : 'Fail', CheckMark.na : 'N/A'},
})

ChecklistLabels API.

Implementation

const ChecklistLabels({
  this.document = 'Checklist',
  this.item = 'Item',
  this.mark = 'Mark',
  this.note = 'Note',
  this.marks = const <CheckMark, String>{
    CheckMark.open: 'Open',
    CheckMark.done: 'Done',
    CheckMark.pass: 'Pass',
    CheckMark.fail: 'Fail',
    CheckMark.na: 'N/A',
  },
});