main function

void main()

Main entry point for the example app

Implementation

void main() {
  runApp(const MaterialApp(
    title: 'Pendart Example',
    home: PendartExample(),
  ));
}