CardButton constructor

const CardButton([
  1. String title = "",
  2. String subTitle = "",
  3. void onPressed()?,
  4. IconData? icon = Icons.arrow_forward_ios,
  5. Color? textColor,
  6. Color? backgroundColor,
  7. Key? key,
])

Implementation

const CardButton([
  this.title = "",
  this.subTitle = "",
  this.onPressed,
  this.icon = Icons.arrow_forward_ios,
  this.textColor,
  this.backgroundColor,
  Key? key,
]) : super(key: key);