FunctionCallResponse constructor

FunctionCallResponse({
  1. required dynamic result,
  2. required List<TriggerLog> logs,
  3. required String error,
  4. required double durationInSeconds,
})

Implementation

FunctionCallResponse({
  required this.result,
  required this.logs,
  required this.error,
  required this.durationInSeconds,
});