FunctionCallResponse constructor

const FunctionCallResponse({
  1. required String name,
  2. required Map<String, dynamic> args,
})

Implementation

const FunctionCallResponse({
  required this.name,
  required this.args,
});