Execute constructor

Execute({
  1. int? id,
  2. bool useCache = false,
  3. List<Map> configs = const [],
})

Implementation

Execute({int? id, this.useCache = false, List<Map> configs = const []})
    : id = id ?? DateTime.now().millisecondsSinceEpoch,
      cacheManager = CacheManager(cacheDir: join(engineDir, 'execute')),
      memoryEnv = Env(environment: platformEnvironment) {
  this.configs.addAll(configs);
}