plus_plugins icon indicating copy to clipboard operation
plus_plugins copied to clipboard

[Question]: Send message to whatsapp group.

Open AbodiSadiqGitHub opened this issue 3 years ago • 0 comments

What is your question?

I want to send a message to wahatsapp group, 'https://chat.whatsapp.com/JiATE6rTObME5UXacTIfcw' this is a group link, the message is: 'hello'

how can i do, please?

thanks in advanced.

My function is:

void _openLinkInGoogleChrome() { final intent = AndroidIntent( action: 'ACTION_VIEW', data: Uri.encodeFull(url), arguments: {'android.intent.extra.TEXT': 'I am the TEXT'}, package: 'com.android.chrome', type: "text/plain", ); intent.launch(); }

It open the whatsapp but without get message.

AbodiSadiqGitHub avatar Sep 12 '22 12:09 AbodiSadiqGitHub