startAndroidBroadcasts method

Future<void> startAndroidBroadcasts({
  1. required List<AndroidScannerBroadcastPreset> presets,
  2. bool configureChainwayBroadcastOutput = true,
  3. bool showLogs = false,
})

Registers Android broadcast actions from presets.

configureChainwayBroadcastOutput attempts to configure a compatible Chainway scanner service when its optional SDK is present. showLogs controls native Android diagnostic logging.

Implementation

Future<void> startAndroidBroadcasts({
  required List<AndroidScannerBroadcastPreset> presets,
  bool configureChainwayBroadcastOutput = true,
  bool showLogs = false,
}) {
  throw UnimplementedError(
    'startAndroidBroadcasts() has not been implemented.',
  );
}