getAllLogs method

Future<HMSLogList?> getAllLogs()

Method to get all the logs from the SDK

Implementation

Future<HMSLogList?> getAllLogs() async {
  var result = await PlatformService.invokeMethod(PlatformMethod.getAllLogs);
  if (result != null) {
    return HMSLogList.fromMap(result);
  }
  return null;
}