launchTelegramGroup function

Future<void> launchTelegramGroup()

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';
  }
}