DateValue constructor

DateValue({
  1. int? confidence,
  2. int? day,
  3. String? formattedText,
  4. int? month,
  5. String? text,
  6. int? year,
})

Implementation

DateValue({
  this.confidence,
  this.day,
  this.formattedText,
  this.month,
  this.text,
  this.year,
});