Parses uri and opens Youtube's IOS app if possible, else platform handles it.
Future<bool> inIOS() async { if (await launchWithYoutubeScheme()) { return true; } return launchWithHttpScheme(); }