ChatThreadViewportBody constructor

const ChatThreadViewportBody({
  1. Key? key,
  2. required List<Widget> children,
  3. bool bottomAlign = true,
  4. Widget? centerContent,
  5. double bottomSpacer = 0,
  6. List<Widget> overlays = const [],
})

Implementation

const ChatThreadViewportBody({
  super.key,
  required this.children,
  this.bottomAlign = true,
  this.centerContent,
  this.bottomSpacer = 0,
  this.overlays = const [],
});