youwallet / wallet

🚀 基于Flutter开发的跨终端数字货币交易所✨
https://youwallet.github.io/
116 stars 55 forks source link

How to convert hex to str - Flutter #103

Closed zhaobinglong closed 4 years ago

zhaobinglong commented 4 years ago

link: https://pub.dev/packages/hex

    String hex = '001002';
    String str = '';
    List hexList = HEX.decode(hex);
    for(var i = 0; i < hexList.length; i++) {
        String str = String.fromCharCode(hexList[i]);
       str = str + str;
    }