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