MemberItem constructor
const
MemberItem({
- Key? key,
- required String name,
- required String image,
- required String status,
- bool? isAdmin,
- required dynamic onTap(),
- dynamic onChange(
- bool? value
- required bool blocked,
- required bool unknown,
- ContactItemStyle itemStyle = const ContactItemStyle(),
- String searchTxt = "",
- bool isCheckBoxVisible = false,
- bool isChecked = false,
- bool isGroup = false,
Implementation
const MemberItem(
{super.key,
required this.name,
required this.image,
required this.status,
this.isAdmin,
required this.onTap,
this.onChange,
required this.blocked,
required this.unknown,
this.itemStyle = const ContactItemStyle(),
this.searchTxt = "",
this.isCheckBoxVisible = false,
this.isChecked = false,
this.isGroup = false});