CallFunctionResponse constructor

CallFunctionResponse({
  1. String? error,
  2. String? executionId,
  3. String? result,
})

Implementation

CallFunctionResponse({
  this.error,
  this.executionId,
  this.result,
});