getWithMetadata method
Implementation
Future<KVNamespaceGetWithMetadataResult<String?>> getWithMetadata(
String name, {
int? cacheTtl,
}) async {
return KVNamespaceGetWithMetadataResult._(
await _delegate.getWithMetadata(
name,
interop.KVNamespaceGetOptions()
..type = 'text'
..cacheTtl = cacheTtl,
),
);
}