main function

void main()

Implementation

void main() {
  runApp(
    const MaterialApp(
        debugShowCheckedModeBanner: false,
        home: SafeArea(
          child: WebViewApp(),
        )
    ),
  );
}