solvedProblemCount method
Implementation
Future<SubmitStats?> solvedProblemCount({String? username }) async {
assert(isInitialized, throw LeetCodeAPIException(100));
return await fetchUserDetails<SubmitStats>(
username: username ?? _username,
query: GQLQueries.userSolvedProblemCount,
);
}