Generate.c3 constructor

Generate.c3({
  1. String? fallbackDartSdkPath,
  2. Set<String>? templateFilePaths,
  3. Set<String>? rootPaths,
  4. Set<String>? subPaths,
  5. Set<String>? pathPatterns,
  6. String? outputDirPath,
  7. List<Model>? annotations,
})

Implementation

factory Generate.c3({
  String? fallbackDartSdkPath,
  Set<String>? templateFilePaths,
  Set<String>? rootPaths,
  Set<String>? subPaths,
  Set<String>? pathPatterns,
  String? outputDirPath,
  List<Model>? annotations,
}) {
  return Generate(
    fallbackDartSdkPath: fallbackDartSdkPath,
    templateFilePaths: templateFilePaths,
    rootPaths: rootPaths,
    subPaths: subPaths,
    pathPatterns: pathPatterns,
    outputDirPath: outputDirPath,
    annotations: annotations,
  );
}