Chat constructor
const
Chat({
- Key? key,
- required String title,
- TextStyle? style,
- Color? backgroundColor,
- required RefreshController refreshController,
- void onRefresh()?,
- EdgeInsetsGeometry? listViewPadding,
- required int itemCount,
- Radius? topLeft,
- Radius? topRight,
- required Widget inputWidget,
- required ScrollController scrollController,
- required Widget? itemBuilder(),
Implementation
const Chat({
super.key,
required this.title,
this.style,
this.backgroundColor,
required this.refreshController,
this.onRefresh,
this.listViewPadding,
required this.itemCount,
this.topLeft,
this.topRight, required this.inputWidget, required this.scrollController, required this.itemBuilder,
});