GeneralCellItem constructor

const GeneralCellItem({
  1. Key? key,
  2. dynamic onTap()?,
  3. String title = '',
  4. int badge = 0,
  5. bool required = false,
  6. String subtitle = '',
})

Implementation

const GeneralCellItem(
    {Key? key,
    this.onTap,
    this.title = '',
    this.badge = 0,
    this.required = false,
    this.subtitle = ''})
    : super(key: key);