You don't need to compete with anyone else, just focus on your own path and try your best to every single task you get. Talent is nothing without effort and humility.
for loop, if condition is pretty much similar to Javascript. Map, where, filter function is also similar as well. If you add _ in front of variable, it will be private so it can't be accessible from other classes.
It's always exciting to learn new thing that I haven't seen before. That's the reason I like Technology. Everyday, new technology comes up and we check every single information and catch up the knowledge. As professional perspective, it is important to learn everyday and some people think it's a little hard cus consistency is not that easy we think, but as long as you feel it's fun, you can do it, right?
void main() -> runApp() -> MaterialApp() -> home: Screen(). For statefulWidget class, we need to add createState function in class and setState({}) when button pressed. \
\
class DiceRoller extends StatefulWidget {\
State createState(){
return _DiceRollWidget();
};\
}\
class _DiceRollWidget extends State {\
\
void rollDice() {\
setState((){...});\
}\
\
...\
}