encodeLength static method

List<int> encodeLength(
  1. String length
)

Implementation

static List<int> encodeLength(String length) {
  return const SubstrateScaleCUintEncoder().encode(length.toString());
}