How can I get a number of a certain place, for example, when I have a number like 12345, I need the number on the second place, so in this case the 2. A few more examples that you get the idea:
346775 => 4
673456 => 7
099784 => 9
How is this possible in Dart/Flutter?
>Solution :
You can convert the number to a String and get the element at index 1 from the String.
void main() {
final int longNumber = 12345;
final int numberAtSecondPlace = int.parse(longNumber.toString()[1]);
print(numberAtSecondPlace); //2
}