There are three types of build modes in Flutter. These include:
Debug– It is used to test the apps. On Android Studio, you can find a green play button on the top panel.
“Flutter run”
Profile– In this mode, some debugging ability is maintained – enough to profile your app’s performance, and also, it has the performance as the release mode.
“Flutter run — profile”
Release– It is used for deploying the app on marketplaces.
“Flutter run – – release”
Leave a Reply