ContactDate constructor

ContactDate({
  1. String? label,
  2. String? value,
  3. FlexiDate? date,
})

Implementation

ContactDate({
  this.label,
  this.value,
  this.date,
}) : assert(value != null || date != null);