Stats constructor

Stats({
  1. required Map<String, dynamic> stats,
})

Implementation

Stats({required Map<String, dynamic> stats}) {
  _stats = stats;
  _acceptedAnnotations = stats["accepted_annotations"];
  _contributors = stats["contributors"];
  _iqEarners = stats["iq_earners"];
  _transcribers = stats["transcribers"];
  _unreviewedAnnotations = stats["unreviewed_annotations"];
  _verifiedAnnotations = stats["verified_annotations"];
  _hot = stats["hot"];
  _pageviews = stats["pageviews"];
}