CustomImage constructor

const CustomImage({
  1. Key? key,
  2. required String image,
  3. Color? color,
  4. double? height,
  5. double? width,
  6. BoxFit? fit,
  7. Alignment? alignment,
  8. String? alt,
  9. Map<String, String>? headers,
  10. bool? isSvg,
})

Implementation

const CustomImage(
    {super.key,
    required this.image,
    this.color,
    this.height,
    this.width,
    this.fit,
    this.alignment,
    this.alt,
    this.headers,
    this.isSvg});