FlutterJsExecutor constructor

FlutterJsExecutor({
  1. int maxScriptSize = 10 * 1024 * 1024,
  2. int maxResultSize = 10 * 1024 * 1024,
  3. bool truncateLargeScripts = false,
})

Implementation

FlutterJsExecutor({
  this.maxScriptSize = 10 * 1024 * 1024, // 1MB
  this.maxResultSize = 10 * 1024 * 1024, // 10MB
  this.truncateLargeScripts = false,
});