Transpiler constructor

Transpiler({
  1. required String package,
  2. required String targetPath,
  3. required String dirName,
  4. required String? contextCheck,
  5. required Iterable<String> uses,
  6. required List<String> distFiles,
  7. required String? targetMainFile,
})

Implementation

Transpiler(
    {required this.package,
    required this.targetPath,
    required this.dirName,
    required this.contextCheck,
    required this.uses,
    required this.distFiles,
    required this.targetMainFile});