create method

void create()

Call native function to create native client instance. Have to call it at least once before using other methods

Implementation

void create() {
  if (clientId != null) {
    _rawClient.td_json_client_destroy(clientId!);
  }
  clientId = _rawClient.td_json_client_create();
}