PromptPigeon constructor

PromptPigeon({
  1. required String role,
  2. required String content,
  3. String? attachment,
})

Implementation

PromptPigeon({
  required this.role,
  required this.content,
  this.attachment,
});