onCupertinoProtectedDataAvailabilityChanged property

Stream<bool> get onCupertinoProtectedDataAvailabilityChanged

Implementation

Stream<bool> get onCupertinoProtectedDataAvailabilityChanged => _eventChannel
    .receiveBroadcastStream()
    .where((event) => event is bool)
    .map((event) => event as bool);