I would like to access an index of a string (e.g. 'Hello') and print it to the app (e.g. letter 'o'). This string has to be the input of the user. This can be easily done using Python but I have to use Flutter/Dart in order to do it (mobile development).
Here is just an example of how this would be solve using Python:
my_word = input("Insert your word here: ")
print(my_word[4])
