UserListTile constructor

const UserListTile(
  1. {required String id,
  2. String? subtitle,
  3. Widget? trailing,
  4. bool showImage = true,
  5. Key? key}
)

Implementation

const UserListTile({
  required this.id,
  this.subtitle,
  this.trailing,
  this.showImage = true,
  super.key,
});