getValue method
Get a single value, returns null if not found.
Implementation
Future<V?> getValue(SdbClient client) =>
get(client).then((snapshot) => snapshot?.value);
Get a single value, returns null if not found.
Future<V?> getValue(SdbClient client) =>
get(client).then((snapshot) => snapshot?.value);