SafeImage constructor

SafeImage({
  1. Key? key,
  2. required String? imageUrl,
  3. double width = 0,
  4. double height = 0,
  5. double radius = 8,
  6. BoxFit boxfit = BoxFit.cover,
  7. String? package = "chat_call_core",
  8. String? domainUri = "",
  9. Color? color,
})

Implementation

SafeImage(
    {Key? key,
    required this.imageUrl,
    this.width = 0,
    this.height = 0,
    this.radius = 8,
    this.boxfit = BoxFit.cover,
    this.package = "chat_call_core",
    this.domainUri = "",
    this.color})
    : super(key: key);