fluttercommunity / community

Flutter Community - A central place for community made Flutter content.
1.57k stars 121 forks source link

What is similar code Buffer.from("String","hex") in flutter #90

Open MurtuzaSrashtaSoft opened 2 years ago

MurtuzaSrashtaSoft commented 2 years ago

Discussion: [What is similar code Buffer.from("String","hex") in flutter]

I have the below code in node.js and I want to do the same code in a flutter.

Summary

[how to achieve buffer in a flutter.]

var iv = 'any string';
iv = new Buffer.from(iv, "hex");

StakeOverflow