setInputName method

Future<void> setInputName({
  1. required String inputName,
  2. required String newInputName,
})

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,
    );