InterviewSolution
Saved Bookmarks
| 1. |
Write the difference between runApp() and main() in flutter. |
|
Answer» main(): This function starts the program. Flutter does not allow us to WRITE any program WITHOUT the main() function. |
|