RealtimeTool constructor

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

Creates a RealtimeTool.

Implementation

const RealtimeTool({
  required this.type,
  required this.name,
  this.description,
  this.parameters,
});