getMeta method

  1. @override
Future<String?> getMeta(
  1. String key
)
override

Reads the value for key from the engine's _sync_meta KV table, or null if the key does not exist. Added in 0.2.0.

Implementation

@override
Future<String?> getMeta(String key) async => _meta[key];