setText method

Future<String> setText(
  1. Uint8List node,
  2. String key,
  3. String value, {
  4. required Credentials credentials,
  5. Transaction? transaction,
})

The optional transaction parameter can be used to override parameters like the gas price, nonce and max gas. The data and to fields will be set by the contract.

Implementation

Future<String> setText(_i2.Uint8List node, String key, String value,
    {required _i1.Credentials credentials,
    _i1.Transaction? transaction}) async {
  final function = self.abi.functions[21];
  assert(checkSignature(function, '10f13a8c'));
  final params = [node, key, value];
  return write(credentials, transaction, function, params);
}