refresh method
- @Deprecated("It is no longer possible to use [refresh] by directly specifying [PageRef] or [WidgetRef]. Instead, use [ref.page.refresh] or [ref.widget.refresh] to specify the scope. [PageRef]や[WidgetRef]を直接指定しての[refresh]の利用はできなくなります。代わりに[ref.page.refresh]や[ref.widget.refresh]でスコープを指定しての利用を行ってください。")
Implementation
@Deprecated(
"It is no longer possible to use [refresh] by directly specifying [PageRef] or [WidgetRef]. Instead, use [ref.page.refresh] or [ref.widget.refresh] to specify the scope. [PageRef]や[WidgetRef]を直接指定しての[refresh]の利用はできなくなります。代わりに[ref.page.refresh]や[ref.widget.refresh]でスコープを指定しての利用を行ってください。",
)
void refresh() {
return page.getScopedValue<void, _RefreshValue>(
(ref) => const _RefreshValue(),
listen: true,
);
}