WaveBubble constructor

const WaveBubble({
  1. Key? key,
  2. required Directory appDirectory,
  3. double? width,
  4. int? index,
  5. bool isSender = false,
  6. String? path,
})

Implementation

const WaveBubble({
  super.key,
  required this.appDirectory,
  this.width,
  this.index,
  this.isSender = false,
  this.path,
});