UiImageWidget constructor

const UiImageWidget({
  1. Key? key,
  2. required Image image,
  3. BoxFit fit = BoxFit.fill,
})

Implementation

const UiImageWidget({
  Key? key,
  required this.image,
  this.fit = BoxFit.fill,
}) : super(key: key);