From 5867dc3317a99c9d30a674ad3411df1be02cec26 Mon Sep 17 00:00:00 2001 From: xsahil03x Date: Fri, 27 Nov 2020 13:45:28 +0530 Subject: [PATCH] [UserListView] remove redundant property Signed-off-by: xsahil03x --- lib/src/user_list_view.dart | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/src/user_list_view.dart b/lib/src/user_list_view.dart index cc763971..b57e2d55 100644 --- a/lib/src/user_list_view.dart +++ b/lib/src/user_list_view.dart @@ -62,7 +62,6 @@ class UserListView extends StatefulWidget { this.separatorBuilder, this.onImageTap, this.selectedUsers, - this.swipeToAction = false, this.pullToRefresh = true, this.groupAlphabetically = false, this.crossAxisCount = 1, @@ -75,9 +74,6 @@ class UserListView extends StatefulWidget { /// The builder that will be used in case of error final Widget Function(Error error) errorBuilder; - /// If true a default swipe to action behaviour will be added to this widget - final bool swipeToAction; - /// The builder used when the channel list is empty. final WidgetBuilder emptyBuilder;