add method

Future<K> add(
  1. SdbClient client,
  2. V value
)

Add a single record.

Implementation

Future<K> add(SdbClient client, V value) =>
    client.interface.sdbAddImpl<K, V>(this, value);