CompiledExecutable constructor

const CompiledExecutable({
  1. required TargetOs targetOs,
  2. required Arch targetArch,
  3. required String path,
  4. String? debugInfoPath,
})

Implementation

const CompiledExecutable({
  required this.targetOs,
  required this.targetArch,
  required this.path,
  this.debugInfoPath,
});