encodeSetTextCall static method

Uint8List encodeSetTextCall(
  1. Uint8List node,
  2. String key,
  3. String value
)

Implementation

static Uint8List encodeSetTextCall(
    Uint8List node, String key, String value) {
  return SolCodec.encodeCall(
    'setText(bytes32,string,string)',
    [SolFixedBytes(32), SolString(), SolString()],
    [node, key, value],
  );
}