Step 1:
Add your icon to [projectFolder]/android/app/src/main/res/drawable
(for example ic_launcher.png)

Step 2:
Go to [projectFolder]/android/app/src/main/AndroidManifest.xml
and add the attribute android:icon="@mipmap/ic_launcher"
in activity
tag.
<activity
android:name=".MainActivity"
android:icon="@mipmap/ic_launcher"
...
>
</activity>
Step 3:
and use that name here:
final AndroidInitializationSettings initializationSettingsAndroid = AndroidInitializationSettings('@mipmap/ic_launcher');