getAverageScore method

FutureOr<int> getAverageScore()

@detail api @author wangjunzheng @brief Get the average score for the user's current performance. @return - <0:Failed to get the average score. - >=0:The average score. @order 28

Implementation

FutureOr<int> getAverageScore() async {
  return await nativeCall('getAverageScore', []);
}