generate_one_time_keys method

void generate_one_time_keys(
  1. int count
)

Implementation

void generate_one_time_keys(int count) {
  _createRandom(
      (inst, random, size) =>
          olm_account_generate_one_time_keys(_inst, count, random, size),
      (inst) => olm_account_generate_one_time_keys_random_length(inst, count),
      _inst);
}