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 161 views
1 answer 171 views
1 answer 139 views
2 answers 208 views
2 answers 170 views
170 views asked Oct 19, 2022 by avibootz
1 answer 126 views
1 answer 209 views
...