Reputation: 905
Similar to this question here but for flutter/dart: Easier / better way to convert hexadecimal string to list of numbers in Python?
I have a string with hexadecimal value like 09F911029D74E35BD84156C5635688C0
and I want to return [9, 249, 17, 2, 157, 116, 227, 91, 216, 65, 86, 197, 99, 86, 136, 192]
. In python I can just use list(binascii.unhexlify('09F911029D74E35BD84156C5635688C0'))
. Is there such a function for flutter/dart?
Upvotes: 2
Views: 2174