Output constructor

Output({
  1. File? audio,
  2. File? image,
  3. String? message,
})

Implementation

Output({
  this.audio,
  this.image,
  this.message,
});