ImageArea constructor
const
ImageArea({
- ImageController? controller,
- required double width,
- required double height,
- String? onLoadingImage,
- BoxDecoration? decoration,
- EdgeInsetsGeometry? margin,
- EdgeInsetsGeometry? padding,
- Widget? emptyChild,
- Widget? onErrorChild,
- Widget? onDragChild,
- Widget? onLoadingChild,
- BoxFit? fit,
- Key? key,
Constructs an ImageArea with specified width and height.
Implementation
const ImageArea({
this.controller,
required this.width,
required this.height,
this.onLoadingImage,
this.decoration,
this.margin,
this.padding,
this.emptyChild,
this.onErrorChild,
this.onDragChild,
this.onLoadingChild,
this.fit,
super.key
});