ChatListScreen constructor

const ChatListScreen({
  1. Key? key,
  2. required Widget builder(
    1. ChatListState state
    ),
  3. bool needCallInit = true,
  4. bool needCallDispose = true,
})

Implementation

const ChatListScreen({
  super.key,
  required this.builder,
  this.needCallInit = true,
  this.needCallDispose = true,
});