setNotifierConfig method

Future<void> setNotifierConfig({
  1. required int agentId,
  2. required int notifierId,
  3. required Map<String, dynamic> notifierOptions,
})

Handler for set_notifier_config.

Configure an existing notification agent.

Required Parameters:

  • agentId: The agent of the notifier
  • notifierId: The notifier config to update
  • notifierOptions: A map containing the configuration options for the notifier

Implementation

Future<void> setNotifierConfig({
    required int agentId,
    required int notifierId,
    required Map<String, dynamic> notifierOptions,
}) async => _commandSetNotifierConfig(_client, agentId: agentId, notifierId: notifierId, notifierOptions: notifierOptions);