New Platform Logging Stream
- Added
FlutterBranchSdk.platformLogsstream to receive Branch SDK log messages in real-time - Enable logging via
branch-config.json(enableLoggingandlogLevelkeys) or programmatically throughFlutterBranchSdk.init() - Supports log levels:
VERBOSE,DEBUG,INFO,WARNING,ERROR, andNONE - Example usage:
FlutterBranchSdk.platformLogs.listen((logMessage) { debugPrint('Branch Log: $logMessage'); });