remove method

void remove(
  1. AutoRouteGuard guard
)

Removes guard from the list of active guards

Implementation

void remove(AutoRouteGuard guard) {
  value = [...value..remove(guard)];
}