VanImage constructor

const VanImage({
  1. Key? key,
  2. String? src = '',
  3. Uint8List? memory,
  4. BoxFit? fit,
  5. double? height,
  6. double? width,
  7. double radius = 0,
  8. bool round = false,
  9. bool showError = true,
  10. bool showLoading = true,
})

Implementation

const VanImage({
  super.key,
  this.src = '',
  this.memory,
  this.fit,
  this.height,
  this.width,
  this.radius = 0,
  this.round = false,
  this.showError = true,
  this.showLoading = true,
});