getSelectListLength method
Implementation
Widget getSelectListLength() {
return Padding(
padding: const EdgeInsets.symmetric(
vertical: 4
),
child: UFUText(
text: '$selectedItemCount/$mainListLength',
textColor: AppTheme.themeColors.secondaryText,
),
);
}