get<T> method
Implementation
Future<T?> get<T>(
String key, {
bool? allowConcurrency,
bool? noCache,
}) async {
final obj = await _delegate.get(
key,
interop.DurableObjectGetOptions()
..allowConcurrency = allowConcurrency
..noCache = noCache,
);
return obj == null ? null : dartify(obj) as T;
}