drago_whatsapp_flutter 0.0.7
drago_whatsapp_flutter: ^0.0.7 copied to clipboard
This plugin will allow to send text, files in the background using whatsapp web
drago_whatsapp_flutter #
This plugin will allow to access whatsapp in the background to send text, files, etc.
Getting Started #
flutter pub add drago_whatsapp_flutter
Example of Usage #
WhatsappClient? client;
client = await DragoWhatsappFlutter.connect(
saveSession: true,
onConnectionEvent: _onConnectionEvent,
onQrCode: _onQrCode,
);
await client?.chat.sendTextMessage(
phone: phoneNumber.text,
message: message.text,
);