How to convert hexadecimal to integer in Dart

1 Answer

0 votes
void main() {
    String string = "FF";

    print(int.parse(string, radix: 16));
}



/*
run:

255

*/

 



answered Oct 18, 2022 by avibootz

Related questions

1 answer 179 views
1 answer 174 views
1 answer 146 views
2 answers 217 views
2 answers 176 views
176 views asked Oct 19, 2022 by avibootz
1 answer 130 views
1 answer 211 views
...