SelectGroupCard constructor

SelectGroupCard(
  1. BuildContext context, {
  2. required List<String> titles,
  3. required Function onTap,
  4. List<String?>? ids,
  5. List<String?>? contents,
  6. ImageSourceType? imageSourceType,
  7. List<String?>? images,
  8. double radius = 10,
  9. Color contentTextColor = const Color(0xff003087),
  10. Color titleTextColor = const Color(0xff003087),
  11. Color cardBackgroundColor = const Color(0xffCCd6E7),
  12. Color cardSelectedColor = const Color(0xff003087),
  13. Duration duration = const Duration(milliseconds: 100),
  14. Key? key,
})

Implementation

SelectGroupCard(this.context,
    {required this.titles,
    required this.onTap,
    this.ids,
    this.contents,
    this.imageSourceType,
    this.images,
    this.radius = 10,
    this.contentTextColor = const Color(0xff003087),
    this.titleTextColor = const Color(0xff003087),
    this.cardBackgroundColor = const Color(0xffCCd6E7),
    this.cardSelectedColor = const Color(0xff003087),
    this.duration = const Duration(milliseconds: 100),
    Key? key})
    : super(key: key);