unwatchEffect4 function

void unwatchEffect4(
  1. BuildContext context,
  2. Object obs1,
  3. Object obs2,
  4. Object obs3,
  5. Object obs4, {
  6. required Object key,
})

Implementation

void unwatchEffect4(
  BuildContext context,
  Object obs1,
  Object obs2,
  Object obs3,
  Object obs4, {
  required Object key,
}) {
  final contextWatch = InheritedContextWatch.of(context);

  contextWatch.unwatchEffect(context, obs1, key);
  contextWatch.unwatchEffect(context, obs2, key);
  contextWatch.unwatchEffect(context, obs3, key);
  contextWatch.unwatchEffect(context, obs4, key);
}