fetch<T> method
- @Deprecated("[fetch] will no longer be available in the App scope. Instead, use [ref.page.ancestor] or [ref.widget.ancestor] and limit its use to page and widget scopes only. Appスコープでの[fetch]の利用はできなくなります。代わりに[ref.page.ancestor]や[ref.widget.ancestor]を利用し、ページやウィジェットスコープのみでの利用に限定してください。")
T?
fetch<
T>([ - Object? name
])
Implementation
@Deprecated(
"[fetch] will no longer be available in the App scope. Instead, use [ref.page.ancestor] or [ref.widget.ancestor] and limit its use to page and widget scopes only. Appスコープでの[fetch]の利用はできなくなります。代わりに[ref.page.ancestor]や[ref.widget.ancestor]を利用し、ページやウィジェットスコープのみでの利用に限定してください。",
)
T? fetch<T>([
Object? name,
]) {
return getAlreadyExistsScopedValue<T, _WatchValue<T, Ref>>(
name: name,
listen: true,
) ??
getAlreadyExistsScopedValue<T, _CacheValue<T, Ref>>(
name: name,
);
}