ChatForwardElement constructor

ChatForwardElement(
  1. PreciseDateTime at, {
  2. List<Rx<ChatItem>> forwards = const [],
  3. Rx<ChatItem>? note,
})

Implementation

ChatForwardElement(
  PreciseDateTime at, {
  List<Rx<ChatItem>> forwards = const [],
  Rx<ChatItem>? note,
}) : forwards = RxList(forwards),
     note = Rx(note),
     authorId = forwards.first.value.author.id,
     super(ListElementId(at, forwards.first.value.id));