DateValue.fromJson constructor
Implementation
factory DateValue.fromJson(Map<String, dynamic> json) => DateValue(
confidence: json["confidence"],
day: json["day"],
formattedText: json["formattedText"],
month: json["month"],
text: json["text"],
year: json["year"],
);