DefaultCell constructor

const DefaultCell({
  1. String? title,
  2. String? subtitle,
  3. Widget? rightWidget,
  4. Widget? leftWidget,
  5. VoidCallback? onPressed,
  6. bool isArrowVisible = false,
  7. double rightPadding = 15,
  8. bool isSeparatorVisible = true,
  9. Color? subtitleColor,
  10. Key? key,
})

Implementation

const DefaultCell({
  this.title,
  this.subtitle,
  this.rightWidget,
  this.leftWidget,
  this.onPressed,
  this.isArrowVisible = false,
  this.rightPadding = 15,
  this.isSeparatorVisible = true,
  this.subtitleColor,
  Key? key,
}) : super(key: key);