InfoCard constructor

const InfoCard({
  1. Key? key,
  2. required String title,
  3. required InfoType type,
  4. required String description,
  5. IconData? icon,
  6. List<Widget>? additionalWidgets,
  7. bool inline = false,
})

Implementation

const InfoCard({super.key,
  required this.title,
  required this.type,
  required this.description,
  this.icon,
  this.additionalWidgets,
  this.inline = false,
});