FapBuildResult constructor

const FapBuildResult({
  1. required bool success,
  2. required FlipperApplication? app,
  3. File? fap,
  4. File? debugElf,
  5. List<String> unresolvedSymbols = const [],
  6. String? error,
  7. String? distPath,
})

Implementation

const FapBuildResult({
  required this.success,
  required this.app,
  this.fap,
  this.debugElf,
  this.unresolvedSymbols = const [],
  this.error,
  this.distPath,
});