FunctionResultContent constructor

FunctionResultContent({
  1. required String callId,
  2. Object? result,
  3. Exception? exception,
})

Creates a new FunctionResultContent.

Implementation

FunctionResultContent({
  required this.callId,
  this.result,
  this.exception,
});