AnalyticsReport constructor

const AnalyticsReport({
  1. int totalAttempts = 0,
  2. String? mostFailedField,
  3. Map<String, int> fieldFailureCounts = const {},
})

Implementation

const AnalyticsReport({
  this.totalAttempts = 0,
  this.mostFailedField,
  this.fieldFailureCounts = const {},
});