putKv method

bool putKv(
  1. Uint8List key,
  2. Uint8List value
)

Put kv into the batch

Implementation

bool putKv(Uint8List key, Uint8List value) =>
    _native.batch_add_kv(_batch, _allocateKvBuffer(key), _allocateKvBuffer(value));