LaunchOptions constructor

const LaunchOptions({
  1. Color? barColor,
  2. Color? onBarColor,
  3. SystemNavigationBarParams? systemNavigationBarParams,
  4. bool? barFixingEnabled,
})

Creates a LaunchOptions instance with the specified options.

Implementation

const LaunchOptions({
  this.barColor,
  this.onBarColor,
  this.systemNavigationBarParams,
  this.barFixingEnabled,
});