GtkApplication constructor

const GtkApplication({
  1. Key? key,
  2. Widget? child,
  3. GtkCommandLineListener? onCommandLine,
  4. GtkOpenListener? onOpen,
  5. GtkApplicationNotifier? notifier,
})

Creates a new GtkApplication with and optional onCommandLine and/or onOpen callback.

Implementation

const GtkApplication({
  super.key,
  this.child,
  this.onCommandLine,
  this.onOpen,
  this.notifier,
});