NotificationService constructor

NotificationService()

Implementation

factory NotificationService() {
  if (_singleton == null) {
    _singleton = NotificationService._();
  }
  return _singleton!;
}