I\'m new with Flutter and I wonder about how difficult is (for me) to find a solution on how to convert my variable var int counter = 0; into a variable var String $
String s = "45"; int i = int.parse(s);
int j = 45; String t = "$j";
// If the latter one looks weird, look into string interpolation on https://dart.dev