settings method

Future<InputSettingsResponse> settings({
  1. String? inputName,
  2. String? inputUuid,
})

Gets the settings of an input.

Note: Does not include defaults. To create the entire settings object, overlay inputSettings over the defaultInputSettings provided by GetInputDefaultSettings.

  • Complexity Rating: 3/5
  • Latest Supported RPC Version: 1
  • Added in v5.0.0

Implementation

Future<InputSettingsResponse> settings({
  String? inputName,
  String? inputUuid,
}) async =>
    getInputSettings(
      inputName: inputName,
      inputUuid: inputUuid,
    );