I would like open another app activity using intent (send from Flutter).
For example when try open another app activity using intent (send from Java Android) it looks next:
Intent sendIntent = new Intent();
sendIntent.setAction("test.intent");
sendBroadcast(sendIntent);
How can I do the same on Flutter?