periodic method

  1. @Deprecated("It is no longer possible to use [periodic] by directly specifying [PageRef] or [WidgetRef]. Instead, use [ref.page.periodic] or [ref.widget.periodic] to specify the scope. [PageRef]や[WidgetRef]を直接指定しての[periodic]の利用はできなくなります。代わりに[ref.page.periodic]や[ref.widget.periodic]でスコープを指定しての利用を行ってください。")
Timer periodic(
  1. FutureOr<void> callback(
    1. DateTime currentTime,
    2. DateTime startTime
    ), {
  2. required Duration duration,
  3. Object? name,
})

Implementation

@Deprecated(
  "It is no longer possible to use [periodic] by directly specifying [PageRef] or [WidgetRef]. Instead, use [ref.page.periodic] or [ref.widget.periodic] to specify the scope. [PageRef]や[WidgetRef]を直接指定しての[periodic]の利用はできなくなります。代わりに[ref.page.periodic]や[ref.widget.periodic]でスコープを指定しての利用を行ってください。",
)
Timer periodic(
  FutureOr<void> Function(DateTime currentTime, DateTime startTime)
      callback, {
  required Duration duration,
  Object? name,
}) {
  return page.getScopedValue<Timer, _PeriodicValue>(
    (ref) => _PeriodicValue(
      callback: callback,
      duration: duration,
    ),
    name: name,
  );
}