ToolSearchMessage constructor

const ToolSearchMessage({
  1. required String type,
  2. String? subtype,
  3. Map<String, dynamic>? message,
  4. Map<String, dynamic>? compactMetadata,
  5. Map<String, dynamic>? attachment,
})

Implementation

const ToolSearchMessage({
  required this.type,
  this.subtype,
  this.message,
  this.compactMetadata,
  this.attachment,
});