ListUserItem constructor

ListUserItem({
  1. Key? key,
  2. required String imageUrl,
  3. required String title,
  4. required String subtitle,
})

Implementation

ListUserItem(
    {Key? key,
    required this.imageUrl,
    required this.title,
    required this.subtitle});