FAGGenerator constructor
FAGGenerator({})
Implementation
FAGGenerator(
{required this.packageName,
required this.filePaths,
required this.configJSONString}) {
try {
// 生成配置
config = FAGConfig.fromRawJson(configJSONString);
} catch (e) {
print("script stop, try to parse config json to FAGConfig error: $e");
}
}