tryDelegateOf static method
Implementation
static FRouterDelegate? tryDelegateOf(BuildContext context,
{bool listen = false}) {
try {
return delegateOf(context);
} on ProviderNotFoundException {
return null;
}
}
static FRouterDelegate? tryDelegateOf(BuildContext context,
{bool listen = false}) {
try {
return delegateOf(context);
} on ProviderNotFoundException {
return null;
}
}