uploadSdkInfo method Null safety

Future<int> uploadSdkInfo()

Upload the SDK log You can call the method after joining a channel.

Implementation

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