getValue method

Future<V?> getValue(
  1. K key
)

Get a single value.

Implementation

Future<V?> getValue(K key) =>
    getRecord(key).then((snapshot) => snapshot?.value);