fetchEvaluations method
Implementation
Future<BKTResult<void>> fetchEvaluations({int? timeoutMillis}) async {
/// The native code may emit `BKTException`, so we must use `BKTResult` for handle exception
return statusGuard(
await _invokeMethod(
CallMethods.fetchEvaluations.name,
argument: {
'timeoutMillis': timeoutMillis,
},
),
);
}