ImageViewer constructor
const
ImageViewer({})
Implementation
const ImageViewer({
Key? key,
required this.url,
required this.height,
this.width,
this.fit
}) : assert(url != "",'url can not be empty!'),
assert(height > 0, 'height must be more than 0'),
super(key:key);