CrCell<PT> constructor

CrCell<PT>({
  1. Key? key,
  2. String? title,
  3. String? subTitle,
  4. PT? preview,
  5. IconData? icon,
  6. IconData? rightIcon,
  7. dynamic onTap()?,
})

Implementation

CrCell(
    {Key? key,
    this.title,
    this.subTitle,
    this.preview,
    this.icon,
    this.rightIcon,
    this.onTap})
    : super(key: key);