ImageShape constructor
ImageShape({})
Implementation
ImageShape({
required this.image,
this.borderRadius = Radius.zero,
this.minimumSizeOfImage = const Size(40, 40),
super.color,
super.location,
super.size,
super.zIndex,
super.reactSize,
}) {
size =
calculatedSize(Size(image.width.toDouble(), image.height.toDouble()));
}