FunctionConfiguration constructor

FunctionConfiguration({
  1. EncodingType? encodingType,
  2. FunctionConfigurationEnvironment? environment,
  3. String? execArgs,
  4. String? executable,
  5. int? memorySize,
  6. bool? pinned,
  7. int? timeout,
})

Implementation

FunctionConfiguration({
  this.encodingType,
  this.environment,
  this.execArgs,
  this.executable,
  this.memorySize,
  this.pinned,
  this.timeout,
});