AITranscriberPanel constructor

const AITranscriberPanel({
  1. Key? key,
  2. double bottomOffset = 0,
  3. double leftOffset = 0,
  4. double rightOffset = 0,
  5. Duration animationDuration = const Duration(milliseconds: 300),
  6. Curve animationCurve = Curves.easeInOut,
})

Implementation

const AITranscriberPanel({
  super.key,
  this.bottomOffset = 0,
  this.leftOffset = 0,
  this.rightOffset = 0,
  this.animationDuration = const Duration(milliseconds: 300),
  this.animationCurve = Curves.easeInOut,
});