MonthLog.fromMap constructor

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

Implementation

factory MonthLog.fromMap(Map<String, dynamic> json) => MonthLog(
      month: json["month"],
      days: List<DayLog>.from(json["days"].map((dynamic x) => DayLog.fromMap(x))),
    );