EventThisWeek.fromMap constructor

EventThisWeek.fromMap(
  1. Map<String, dynamic> json
)

Implementation

factory EventThisWeek.fromMap(Map<String, dynamic> json) => EventThisWeek(
      key: json["key"],
      title: json["title"],
      date: json["date"],
      eventCounts: json["event_counts"],
    );