setInputName method
Sets the name of an input (rename).
- Complexity Rating: 2/5
- Latest Supported RPC Version: 1
- Added in v5.0.0
Implementation
Future<void> setInputName({
String? inputName,
String? inputUuid,
required String newInputName,
}) async =>
await setName(
inputName: inputName,
inputUuid: inputUuid,
newInputName: newInputName,
);