MessageQueueController constructor

MessageQueueController({
  1. void onLogOperation(
    1. QueueOperation operation,
    2. String? content
    )?,
})

Implementation

MessageQueueController({
  void Function(QueueOperation operation, String? content)? onLogOperation,
}) : _onLogOperation = onLogOperation;