VImageContainer constructor

const VImageContainer({
  1. Key? key,
  2. Widget? child,
  3. double height = 128,
  4. double width = 128,
  5. BoxFit fit = BoxFit.contain,
  6. double borderRadius = 8,
  7. IconData? placeholderIcon = Icons.image_outlined,
})

Implementation

const VImageContainer({
  super.key,
  this.child,
  this.height = 128,
  this.width = 128,
  this.fit = BoxFit.contain,
  this.borderRadius = 8,
  this.placeholderIcon = Icons.image_outlined,
});