OpenWImage constructor

const OpenWImage({
  1. Key? key,
  2. required dynamic nodeState,
  3. required FTextTypeInput image,
  4. required FSize width,
  5. required FSize height,
  6. required FBoxFit boxFit,
  7. required FBorderRadius borderRadius,
  8. required FShadow shadows,
})

Returns a Image

Implementation

const OpenWImage({
  super.key,
  required this.nodeState,
  required this.image,
  required this.width,
  required this.height,
  required this.boxFit,
  required this.borderRadius,
  required this.shadows,
});