Before you publish your app with Start.io (formerly StartApp), we strongly recommend that you test your Flutter integration to ensure it is operating properly. Don't forget to disable it before production.
class _MyAppState extends State<MyApp> {
var startAppSdk = StartAppSdk();
@override
void initState() {
super.initState();
// TODO make sure to comment out this line before release
startAppSdk.setTestAdsEnabled(true);
}
}