FunctionObject constructor

const FunctionObject({
  1. required String name,
  2. String? description,
  3. Map<String, dynamic>? parameters,
  4. bool? strict,
})

Implementation

const FunctionObject({
  required this.name,
  this.description,
  this.parameters,
  this.strict,
});