from static method
Implementation
static Component from({required String src, String? alt, String? caption, bool zoom = false, Key? key}) {
if (zoom) {
return ZoomableImage(src: src, alt: alt, caption: caption, key: key);
}
return _Image(src: src, alt: alt, caption: caption, key: key);
}