TotalReport.fromJson constructor

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

Implementation

factory TotalReport.fromJson(Map<String, dynamic> json) => TotalReport(
      slug: json["slug"],
      name: json["name"],
      total: json["total"],
    );