unwatchEffect2 function
Implementation
void unwatchEffect2(
BuildContext context,
Object obs1,
Object obs2, {
required Object key,
}) {
final contextWatch = InheritedContextWatch.of(context);
contextWatch.unwatchEffect(context, obs1, key);
contextWatch.unwatchEffect(context, obs2, key);
}