clearStatsEventCallback method Null safety

Future<int> clearStatsEventCallback()

Clear the callback for the stats event

Implementation

Future<int> clearStatsEventCallback() async {
  _statsEventHandler.setCallback(null);
  IntValue reply = await _api.clearStatsEventCallback();
  return reply.value ?? -1;
}