NitrogenInitApp constructor

const NitrogenInitApp({
  1. required InitResult result,
  2. String? initialOrg,
  3. List<String> initialPlatforms = const ['android', 'ios', 'macos', 'windows', 'linux'],
  4. VoidCallback? onExit,
  5. Key? key,
})

Implementation

const NitrogenInitApp({
  required this.result,
  this.initialOrg,
  this.initialPlatforms = const ['android', 'ios', 'macos', 'windows', 'linux'],
  this.onExit,
  super.key,
});