getNotifiers method

Future<List<TautulliNotifier>> getNotifiers({
  1. String? notifyAction,
})

Handler for get_notifiers.

Get a list of configured notifiers.

Optional Parameters:

  • notifyAction: The notification action to filter out

Implementation

Future<List<TautulliNotifier>> getNotifiers({
    String? notifyAction,
}) async => _commandGetNotifiers(_client, notifyAction: notifyAction);