If you want to convert ascii value in integer to its character equivalent in flutter? This ia exactly what you need to generate your alphabet:
1 2 3 4 5 6 7 8 9 10 11 | import 'dart:core'; void RandomString() { List<int> a = new List<int>.generate(26, (int index) => index + 65); String f = String.fromCharCodes(a); print(f); } void main() { RandomString(); } |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.