OdsCardThumbnail constructor

const OdsCardThumbnail({
  1. Key? key,
  2. required dynamic image,
  3. required String contentDescription,
  4. Alignment alignment = Alignment.center,
  5. BoxFit contentScale = BoxFit.cover,
  6. Color? backgroundColor,
})

Implementation

const OdsCardThumbnail({
  super.key,
  required this.image,
  required this.contentDescription,
  this.alignment = Alignment.center,
  this.contentScale = BoxFit.cover,
  this.backgroundColor,
});