changes property

Stream<UserChanges> changes

Gets a Stream of UserChanges that can be used to receive notifications when the user changes.

Implementation

Stream<UserChanges> get changes {
  final controller = UserNotificationsController(this);
  return controller.createStream();
}