countMastered function

int countMastered(
  1. Map<String, String> topicIdToMastery
)

Number of topics whose mastery is 'mastery'.

Implementation

int countMastered(Map<String, String> topicIdToMastery) =>
    topicIdToMastery.values.where((m) => m == 'mastery').length;