encode method

Uint8List encode(
  1. List args
)

Encode the parameters to Uint8List

Implementation

Uint8List encode(List args) {
  List out = _encode(args);
  return function.encodeCall(out);
}