NectorController constructor

NectorController({
  1. required bool showNotification,
  2. required String appName,
  3. required GlobalKey<NavigatorState> navigatorKey,
})

Implementation

NectorController({
  required this.showNotification,
  required this.appName,
  required GlobalKey<NavigatorState> navigatorKey,
}) : _navigatorKey = navigatorKey {
  _initialiseNotificationsPlugin();
  callsSubject.listen((_) => _onCallsChanged());
}