This plugin will allow to access whatsapp in the background to send text, files, etc.
flutter pub add drago_whatsapp_flutter
WhatsappClient? client;
client = await DragoWhatsappFlutter.connect(
saveSession: true,
onConnectionEvent: _onConnectionEvent,
onQrCode: _onQrCode,
);
await client?.chat.sendTextMessage(
phone: phoneNumber.text,
message: message.text,
);