get method

Future<SdbRecordSnapshot<K, V>?> get(
  1. SdbClient client
)

Get a single record snapshot.

If the record does not exist, the snapshot will have exists set to false.

Implementation

Future<SdbRecordSnapshot<K, V>?> get(SdbClient client) =>
    impl.getImpl(client);