WrapperImage constructor
WrapperImage({
- Key? key,
- required double? width,
- required double? height,
- required String url,
- BoxFit fit = BoxFit.contain,
- bool hold = false,
- bool circle = false,
- bool fillet = false,
- bool square = false,
- num radius = 0,
- List<
String> ? browseList, - ValueNotifier<
File> ? photo, - void delete()?,
- PlaceholderWidgetBuilder? placeholderWidgetBuilder,
- LoadingErrorWidgetBuilder? loadingErrorWidgetBuilder,
Implementation
WrapperImage({
Key? key,
required this.width,
required this.height,
required this.url,
this.fit: BoxFit.contain,
this.hold = false,
this.circle = false,
this.fillet = false,
this.square = false,
this.radius = 0,
this.browseList,
this.photo,
this.delete,
this.placeholderWidgetBuilder,
this.loadingErrorWidgetBuilder,
}) : super(key: key);