I know this is old but I'm answering for the record for if someone is having this issue.
You probably just forgot to write the main method in main.dart Just add: void main() => runApp(const MyApp()); before the class.
main.dart
void main() => runApp(const MyApp());