AppFindCard constructor

const AppFindCard({
  1. Key? key,
  2. String? title,
  3. String? subtitle,
  4. Widget? image,
  5. Color? color,
  6. Color? titleColor,
  7. Color? subtitleColor,
})

Implementation

const AppFindCard({
  Key? key,
  this.title,
  this.subtitle,
  this.image,
  this.color,
  this.titleColor,
  this.subtitleColor,
}) : super(key: key);