solana_buffer 0.0.1
solana_buffer: ^0.0.1 copied to clipboard
An interface to read and write structured data types to a buffer.
An interface to read and write structured data types to a buffer.
const encoding = BufferEncoding.utf8;
final buffer = Buffer.fromString('Hello', encoding);
buffer.setString('S', encoding);
print(buffer.getString(encoding)); // Sello
copied to clipboard