getAlarm method

Future<int?> getAlarm({
  1. bool? allowConcurrency,
})

Implementation

Future<int?> getAlarm({bool? allowConcurrency}) async {
  return _delegate.getAlarm(
    interop.DurableObjectGetAlarmOptions()
      ..allowConcurrency = allowConcurrency,
  );
}