I've tried to use url_launcher package but it looks like it's working only for default schemes like http, mail, sms, tel for some reason.
String phoneURL = 'skype:skype_login';
if (await canLaunch(url)) {
await launch(url);
}
So any chance to open external app (like Skype) from Flutter code?