ReleasePackerFile constructor

ReleasePackerFile(
  1. String sourcePath,
  2. String destinyPath, {
  3. Object? platform,
  4. String? dartCompileExe,
  5. String? dartCompileKernel,
  6. String? windowsGUI,
})

Implementation

ReleasePackerFile(
  this.sourcePath,
  String destinyPath, {
  super.platform,
  String? dartCompileExe,
  String? dartCompileKernel,
  String? windowsGUI,
}) : destinyPath = destinyPath == '.' ? sourcePath : destinyPath,
     super(
       commands: ReleasePackerCommand.toCommands(
         sourcePath: sourcePath,
         dartCompileExe: dartCompileExe,
         dartCompileKernel: dartCompileKernel,
         windowsGUI: windowsGUI,
       ),
     );