just had the same error, the fix was to specify package AND componentName:
const intent = AndroidIntent(
action: 'android.intent.action.MAIN',
category: 'android.intent.category.LAUNCHER',
package: 'com.example.name',
componentName: 'com.example.name',
);