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