encodeTextCall static method

Uint8List encodeTextCall(
  1. Uint8List node,
  2. String key
)

Implementation

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