get method

Future<String?> get(
  1. String name, {
  2. int? cacheTtl,
})

Implementation

Future<String?> get(
  String name, {
  int? cacheTtl,
}) =>
    _delegate.get(
      name,
      interop.KVNamespaceGetOptions()
        ..type = 'text'
        ..cacheTtl = cacheTtl,
    );