UserPreferencesListTile constructor Null safety

const UserPreferencesListTile(
  1. {required dynamic title,
  2. dynamic subtitle,
  3. dynamic icon,
  4. dynamic onTap,
  5. dynamic onLongPress,
  6. bool isCompactTitle = false}
)

Implementation

const UserPreferencesListTile({
  required this.title,
  this.subtitle,
  this.icon,
  this.onTap,
  this.onLongPress,
  this.isCompactTitle = false,
});