JsonModelRunner constructor

JsonModelRunner({
  1. required String source,
  2. required String output,
  3. String? daoDir,
  4. String? onlyFile,
  5. String? cipher,
})

Implementation

JsonModelRunner({
  required String source,
  required String output,
  String? daoDir,
  String? onlyFile,
  String? cipher,
})   : srcDir = source,
      distDir = output,
      daoDir = output + '/../dao',
      onlyFile = onlyFile,
      cipher = cipher;