import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:url_launcher/url_launcher.dart'; // Define el estado class MyState { } // Define el bloc class MyBloc extends Cubit { MyBloc() : super(MyState()); } Future launchAemetURL() async { const url = 'https://www.aemet.es/es/eltiempo/prediccion/municipios/caspe-id50074'; if (await canLaunch(url)) { await launch(url); } else { throw 'Could not launch $url'; } }