CardTile constructor

const CardTile({
  1. Key? key,
  2. required String title,
  3. String trailing = "",
  4. String? subtitle,
  5. IconData? leading,
  6. void onTap()?,
  7. bool? disabled,
})

Implementation

const CardTile({
  Key? key,
  required this.title,
  this.trailing = "",
  this.subtitle,
  this.leading,
  this.onTap,
  this.disabled,
}) : super(key: key);