ChatRoomsListNotifier constructor

ChatRoomsListNotifier({
  1. required dynamic ref,
  2. required dynamic client,
})

Implementation

ChatRoomsListNotifier({
  required Ref ref,
  required this.client,
}) : super(List<Convo>.empty(growable: false)) {
  _init(ref);
}