removeValue function
Removes whatever is at path.
Implementation
Future<void> removeValue(String path) {
final p = path.toNativeUtf8();
return _awaitDbOutcome(
(port) => fdbDbRemove(p.cast(), port),
'remove',
).whenComplete(() => calloc.free(p));
}