CardContent constructor

const CardContent({
  1. required String title,
  2. String? subtitle,
  3. String? imageUrl,
  4. Uint8List? imageBytes,
  5. List<ChatButton>? actions,
})

Implementation

const CardContent({
  required this.title,
  this.subtitle,
  this.imageUrl,
  this.imageBytes,
  this.actions,
});