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({
required String inputName,
required String newInputName,
}) async =>
await setName(
inputName: inputName,
newInputName: newInputName,
);