launchTelegramGroup function
Implementation
Future<void> launchTelegramGroup() async {
final url = Uri.parse('https://t.me/kangproid');
if (!await launchUrl(url, mode: LaunchMode.externalApplication)) {
throw 'Could not launch $url';
}
}
Future<void> launchTelegramGroup() async {
final url = Uri.parse('https://t.me/kangproid');
if (!await launchUrl(url, mode: LaunchMode.externalApplication)) {
throw 'Could not launch $url';
}
}