td_json_client_destroy method

int td_json_client_destroy(
  1. Pointer<Void> client
)

Destroys the TDLib client instance. After this is called the client instance must not be used anymore. \paramin client The client.

Implementation

int td_json_client_destroy(
  ffi.Pointer<ffi.Void> client,
) {
  return _td_json_client_destroy(
    client,
  );
}