CardContainer constructor

const CardContainer({
  1. Key? key,
  2. required String title,
  3. required String subtitle,
  4. Color? color,
})

Creates a CardContainer widget.

Implementation

const CardContainer({
  Key? key,
  required this.title,
  required this.subtitle,
  this.color,
}) : super(key: key);