fix(ui): missing trailing comma
This commit is contained in:
@@ -677,7 +677,8 @@ class _MessageListViewState extends State<MessageListView> {
|
|||||||
child: BetterStreamBuilder<Iterable<ItemPosition>>(
|
child: BetterStreamBuilder<Iterable<ItemPosition>>(
|
||||||
initialData: _itemPositionListener.itemPositions.value,
|
initialData: _itemPositionListener.itemPositions.value,
|
||||||
stream: _valueListenableToStreamAdapter(
|
stream: _valueListenableToStreamAdapter(
|
||||||
_itemPositionListener.itemPositions),
|
_itemPositionListener.itemPositions,
|
||||||
|
),
|
||||||
comparator: (a, b) {
|
comparator: (a, b) {
|
||||||
if (a == null || b == null) {
|
if (a == null || b == null) {
|
||||||
return false;
|
return false;
|
||||||
|
|||||||
Reference in New Issue
Block a user