import 'package:flutter/services.dart'; class UrlLauncherService { static const _channel = MethodChannel('com.davide.biteplan/launcher'); static Future launch(String url) async { await _channel.invokeMethod('launch', {'url': url}); } }