CheckItem constructor

const CheckItem({
  1. required String label,
  2. CheckMark mark = CheckMark.open,
  3. String note = '',
})

CheckItem API.

Implementation

const CheckItem({
  required this.label,
  this.mark = CheckMark.open,
  this.note = '',
});