7 lines
221 B
Dart
7 lines
221 B
Dart
import './interfaces.dart';
|
|
bool hasLifecycleHook(String name, Object obj) {
|
|
if (name == "routerOnActivate") return obj is OnActivate;
|
|
if (name == "routerCanDeactivate") return obj is CanDeactivate;
|
|
return false;
|
|
}
|