BarcodeKitHostApi constructor

BarcodeKitHostApi({
  1. BinaryMessenger? binaryMessenger,
  2. String messageChannelSuffix = '',
})

Constructor for BarcodeKitHostApi. The binaryMessenger named argument is available for dependency injection. If it is left null, the default BinaryMessenger will be used which routes to the host platform.

Implementation

BarcodeKitHostApi({BinaryMessenger? binaryMessenger, String messageChannelSuffix = ''})
    : pigeonVar_binaryMessenger = binaryMessenger,
      pigeonVar_messageChannelSuffix = messageChannelSuffix.isNotEmpty ? '.$messageChannelSuffix' : '';