clearStatsEventCallback method Null safety
Clear the callback for the stats event
Implementation
Future<int> clearStatsEventCallback() async {
_statsEventHandler.setCallback(null);
IntValue reply = await _api.clearStatsEventCallback();
return reply.value ?? -1;
}