EmptyChatList constructor

const EmptyChatList({
  1. Key? key,
  2. String text = 'No messages yet',
  3. TextStyle? textStyle,
  4. EdgeInsetsGeometry? padding,
  5. Duration fadeInDuration = const Duration(milliseconds: 250),
  6. Duration fadeInDelay = const Duration(milliseconds: 50),
  7. Curve curve = Curves.linearToEaseOut,
})

Creates an empty chat list widget.

Implementation

const EmptyChatList({
  super.key,
  this.text = 'No messages yet',
  this.textStyle,
  this.padding,
  this.fadeInDuration = const Duration(milliseconds: 250),
  this.fadeInDelay = const Duration(milliseconds: 50),
  this.curve = Curves.linearToEaseOut,
});