getValue method

Future<V?> getValue(
  1. SdbClient client
)

Get a single value, returns null if not found.

Implementation

Future<V?> getValue(SdbClient client) =>
    get(client).then((snapshot) => snapshot?.value);