clearLogs method

Future<ClearLogsResponse> clearLogs()

Clear ooPLA's log journal.

One may check the ClearLogsResponse status value to check if it has been successfully executed

Implementation

Future<ClearLogsResponse> clearLogs() async {
  return ClearLogsResponse.fromJson(await _sendRequest('clear_logs'));
}