BonsoirBroadcastAction constructor

BonsoirBroadcastAction({
  1. required BonsoirService service,
  2. bool printLogs = kDebugMode,
})

Creates a new method channel action instance for the broadcast action.

Implementation

BonsoirBroadcastAction({
  required this.service,
  bool printLogs = kDebugMode,
}) : super(
        classType: 'broadcast',
        printLogs: printLogs,
      );