DateValue.fromJson constructor

DateValue.fromJson(
  1. Map<String, dynamic> json
)

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"],
    );