NiceUserList constructor
const
NiceUserList({
- Key? key,
- required List<
NiceUserItem> users, - void onUserTap(
- NiceUserItem user
- void onUserAction(
- NiceUserItem user
- String? actionLabel,
- Widget itemBuilder()?,
- bool showFollowButton = false,
- EdgeInsetsGeometry? padding,
Implementation
const NiceUserList({
super.key,
required this.users,
this.onUserTap,
this.onUserAction,
this.actionLabel,
this.itemBuilder,
this.showFollowButton = false,
this.padding,
});