stringSized method
Creates a utf-8 string codec for a fixed length strings
A codec can encode/decode data types to/from byte arrays Iterable<u8> and Buffers.
Implementation
BorshStringSizedCodec stringSized(
final int length, {
final BufferEncoding? encoding,
}) => BorshStringSizedCodec(length, encoding: encoding);