currentProfileStream property

Stream<AudibleProfile?> currentProfileStream

This method allows you to have a stream of the system audio profile change

Implementation

static Stream<AudibleProfile?> get currentProfileStream {
  return _currentProfileEvent.receiveBroadcastStream().distinct().map(
      (dynamic event) => EnumToString.fromString<AudibleProfile>(
          AudibleProfile.values, event));
}