newUniqueId method

DurableObjectId newUniqueId({
  1. String? jurisdiction,
})

Implementation

DurableObjectId newUniqueId({String? jurisdiction}) =>
    durableObjectIdFromJsObject(_delegate.newUniqueId(
      interop.DurableObjectNamespaceNewUniqueIdOptions()
        ..jurisdiction = jurisdiction,
    ));