LogStructureResponse.fromMap constructor

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

Implementation

factory LogStructureResponse.fromMap(Map<String, dynamic> json) => LogStructureResponse(
      logs: List<YearLog>.from(json["logs"].map((dynamic x) => YearLog.fromMap(x))),
    );