removeValue function

Future<void> removeValue(
  1. String path
)

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));
}