SeoImage constructor

const SeoImage({
  1. Key? key,
  2. required String src,
  3. required String alt,
  4. double? width,
  5. double? height,
  6. BoxFit? fit,
  7. Alignment alignment = Alignment.center,
  8. Widget? placeholder,
  9. Widget? errorWidget,
  10. Map<String, String>? headers,
})

Implementation

const SeoImage({
  super.key,
  required this.src,
  required this.alt,
  this.width,
  this.height,
  this.fit,
  this.alignment = Alignment.center,
  this.placeholder,
  this.errorWidget,
  this.headers,
});