how to call function from another file dart flutter
// --- test.dart: ---
void launchWebView () {
print("1234");
}
// --- main.dart: ---
import "test.dart";
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
// THIS ONLY WORKED WHEN I USED IT WITHIN THE BUILD CONTEXT, not before it.
launchWebView();